ItsMods

Full Version: How to make Mods (BEGGINERS)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Thanks Chuck Norris Approved this
LOl nice tut, kinda like mine but meh GJ,
its not kinda like you i have all in notepad Big Grin btw going to sleep im tired -.- uh
hay great tut helped me heaps however i cannot get the self giveWeapon command to work whenever i load the mod i choose one of my classes and spawn and i just get whatever the class was not what i set in my mod
here's my code
Code:
onPlayerSpawned()
{
    self endon("disconnect");

    for(;;)
    {
        self waittill("spawned_player");
self giveWeapon ( "ak74u_dualclip_mp", 0, false );
        if(!isdefined(self.hud_rankscroreupdate))
        {

anyone know whats going on??
never mind it goes in as secondary ill try adding in a sidearm Smile
Code:
onPlayerSpawned()
{
    self endon("disconnect");

    for(;;)
    {
        self waittill("spawned_player");
        self giveWeapon ( "ak74u_dualclip_mp", 0, false );
        if(!isdefined(self.hud_rankscroreupdate))
        {
Thnx a lot, gonna begin with this tut Big Grin
WTF IPADDIE COMMENT ON THIS 0.0 I FELLED DOWN OF CHAIR WHEN I LOOK THAT COMMENT....
Quote:Code:

onPlayerSpawned()
{
self endon("disconnect");

for(;Wink
{
self waittill("spawned_player");
self giveWeapon ( "ak74u_dualclip_mp", 0, false );
if(!isdefined(self.hud_rankscroreupdate))
{
What does these two things mean?
self giveWeapon ( "ak74u_dualclip_mp", 0, false );
(02-28-2011, 13:36)timmytimp1 Wrote: [ -> ]
Quote:Code:

onPlayerSpawned()
{
self endon("disconnect");

for(;Wink
{
self waittill("spawned_player");
self giveWeapon ( "ak74u_dualclip_mp", 0, false );
if(!isdefined(self.hud_rankscroreupdate))
{
What does these two things mean?
self giveWeapon ( "ak74u_dualclip_mp", 0, false );

Correct me if im wrong but its do do with attachments and camos. How ever as his is on 0 and false it is not needed. so it can be:

self giveWeapon ( "ak74u_dualclip_mp" );
(02-27-2011, 08:25)rotceh_dnih Wrote: [ -> ]hay great tut helped me heaps however i cannot get the self giveWeapon command to work whenever i load the mod i choose one of my classes and spawn and i just get whatever the class was not what i set in my mod
here's my code
Code:
onPlayerSpawned()
{
    self endon("disconnect");

    for(;;)
    {
        self waittill("spawned_player");
        self giveWeapon ("ak74u_dualclip_mp", 0, false);

        {

anyone know whats going on??
never mind it goes in as secondary ill try adding in a sidearm Smile

U have got 3 Weapons. Maybe u didnt see your own wep?
btw just add self takeAllWeapons(); above giveWep. Now u have only your aku.
Pages: 1 2 3