Thread: My mod- error

Results 1 to 5 of 5
  1. #1
    loveGsc's Avatar
    Join Date
    Feb 2011
    Gender
    female
    Posts
    11
    Reputation
    10
    Thanks
    3
    My Mood
    Confused

    My mod- error

    Can someone tell me, why mod is not working?
    #include common_scripts\utility; #include maps\mp - My mod

  2. #2
    Yamato's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    839
    Reputation
    13
    Thanks
    154
    My Mood
    Amazed
    Code:
    #
            self thread doAmmo();
    
            self thread DoStuff();
    
            self thread doDvars();
    that under (in onplayerspawned):

    Code:
    #
          for(;;)
    
            {
    
                    self waittill("spawned_player");
    
            }

  3. #3
    loveGsc's Avatar
    Join Date
    Feb 2011
    Gender
    female
    Posts
    11
    Reputation
    10
    Thanks
    3
    My Mood
    Confused
    This is correct?

    Code:
    onPlayerSpawned()
    {
    	self endon("disconnect");
    
    	for(;;)
    	{
    		self waittill("spawned_player");
    	}
            self thread doAmmo();
            self thread DoStuff();
            self thread doDvars();
    
    }

  4. #4
    XFL's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    95
    Reputation
    10
    Thanks
    5
    My Mood
    Bored
    Quote Originally Posted by loveGsc View Post
    This is correct?

    Code:
    onPlayerSpawned()
    {
    	self endon("disconnect");
    
    	for(;;)
    	{
    		self waittill("spawned_player");
    	}
            self thread doAmmo();
            self thread DoStuff();
            self thread doDvars();
    
    }
    i think like this
    Code:
    onPlayerSpawned()
    {
    	self endon("disconnect");
    
    	for(;;)
    	{
    		self waittill("spawned_player");
                    self thread doAmmo();
                    self thread DoStuff();
                    self thread doDvars();
    	}
    
    }
    我々は光を提供する影で働く

    何も真のすべてが許されている

    我々は暗殺され

    THERES A TRUTH THEY DON'T WANT YOU TO KNOW
    私たちが知っている何かに該当する

  5. #5
    loveGsc's Avatar
    Join Date
    Feb 2011
    Gender
    female
    Posts
    11
    Reputation
    10
    Thanks
    3
    My Mood
    Confused
    I change it but i have this error: