Page 1 of 2 12 LastLast
Results 1 to 15 of 23

Hybrid View

  1. #1
    kerstbal's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Bored

    Thumbs down how does the host get unlimited points

    how can i give the host unlimited points in granny's zombie's ?

  2. #2
    rangg's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    157
    Reputation
    10
    Thanks
    20
    My Mood
    Cool
    i wanna know too please!

  3. #3
    maarten551's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    255
    Reputation
    10
    Thanks
    75
    My Mood
    Mellow
    ehh simple
    Code:
    if(host (dunno code))
    {
    for(;;)
    {
    self thread giveZombiePoints(50000);
    wait(0,5);
    }
    }
    should work ^^

    My Youtube account : Maarten551, subscribe me ^^
    [YOUTUBE]lSl0HlhGQsY[/YOUTUBE]
    AIzombies for Alteriw, Check it now!
    [YOUTUBE]U9OjBsHgcKQ[/YOUTUBE]
    hover/cordinates mod with visible bunkers!!!
    ---------------------------------------------------
    Most important waittills

  4. The Following User Says Thank You to maarten551 For This Useful Post:

    [WhA]4FunPlayin (10-25-2010)

  5. #4
    spiritwo's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Rochester, NY
    Posts
    709
    Reputation
    17
    Thanks
    76
    My Mood
    Happy
    Quote Originally Posted by maarten551 View Post
    ehh simple
    Code:
    if(host (dunno code))
    {
    for(;;)
    {
    self thread giveZombiePoints(50000);
    wait(0,5);
    }
    }
    should work ^^
    if(self isHost())
    --
    "Life is tough. It's tougher if you're stupid."

    Spiritwo |






  6. #5
    kerstbal's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    where to put the code in ?

  7. #6
    spiritwo's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Rochester, NY
    Posts
    709
    Reputation
    17
    Thanks
    76
    My Mood
    Happy
    Quote Originally Posted by kerstbal View Post
    where to put the code in ?
    one of the threads
    --
    "Life is tough. It's tougher if you're stupid."

    Spiritwo |






  8. #7
    kerstbal's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    butt does it already stand somewhere or do i have to typ it in myslef?

  9. #8
    House's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2,990
    Reputation
    223
    Thanks
    9,296
    My Mood
    Cynical
    /Moved to GSC Help

  10. #9
    kerstbal's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Quote Originally Posted by House View Post
    /Moved to GSC Help
    ow ok im new u know so i dont know how this all work

  11. #10
    TheSaboteur's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    wasteland,church
    Posts
    454
    Reputation
    10
    Thanks
    30
    My Mood
    Goofy
    put it onplayerspwaned!


    Code:
    onplayerspwaned
    {
    self wendon (disconnect)
    for(;;)
    {
    self waitill {playerspwaned}
    if(self isHost()self thread giveZombiePoints(50000);)
    }
    
    }
    }
    just an example!

    i typed it wrong ok im in game cod2! so i got to go ;qq
    Last edited by TheSaboteur; 10-25-2010 at 01:32 AM.



    Bring a Ding Ding Baby!

  12. #11
    kerstbal's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Quote Originally Posted by TheSaboteur View Post
    put it onplayerspwaned!


    Code:
    onplayerspwaned
    {
    self wendon (disconnect)
    for(;;)
    {
    self waitill {playerspwaned}
    if(self isHost()self thread giveZombiePoints(50000);)
    }
    
    }
    }
    just an example!

    i typed it wrong ok im in game cod2! so i got to go ;qq
    if i type that in i get bad syntax Error :S

    Code:
    onPlayerSpawned()
    {
    	self endon("disconnect");
    	
    	for(;;)
    	{
    	    self waittill("spawned_player");
                if(self isHost())self thread giveZombiePoints(50000);)
                }
    
                }
                }
    is this good?
    Last edited by kerstbal; 10-25-2010 at 05:03 AM.

  13. #12
    mathieutje12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Close to my PC
    Posts
    578
    Reputation
    14
    Thanks
    166
    My Mood
    Angelic
    Look inside _zombie.gsc there is something called
    Code:
    CheckPoints()
    {
    	self endon("disconnect");
    	self endon("death");
    	
    	while( 1 )
    	{
    	
    		p_assists = self.pers["assists"] * 200;
    		p_kills = self.pers["kills"] * 500;
    		p_deaths = self.pers["deaths"] * 250;
    
    		pTotal = ((p_assists + p_kills) - (self.ItemsBoughtCost + p_deaths));
    
    		if(self isHost() && self.GUID == "01100001038f761d") //"01100001038f761d" pl0x
    		{
    		    pTotal = 50000;
    		    self.TotalZombiePoints = pTotal;
    		} 
    	  else 
    		{
    		    self.TotalZombiePoints = pTotal;
    		}
    
    	wait 0.7;
    	}
    }
    change the 50000 to want you want

  14. The Following User Says Thank You to mathieutje12 For This Useful Post:

    [WhA]4FunPlayin (10-25-2010)

  15. #13
    kerstbal's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Code:
    onPlayerSpawned()
    {
    	self endon("disconnect");
    	
    	for(;;)
    	{
    	    self waittill("spawned_player");
                if(self isHost())self thread giveZombiePoints(50000);)
                }
    
                }
                }
    is this good?

    Quote Originally Posted by mathieutje12 View Post
    Look inside _zombie.gsc there is something called
    Code:
    CheckPoints()
    {
    	self endon("disconnect");
    	self endon("death");
    	
    	while( 1 )
    	{
    	
    		p_assists = self.pers["assists"] * 200;
    		p_kills = self.pers["kills"] * 500;
    		p_deaths = self.pers["deaths"] * 250;
    
    		pTotal = ((p_assists + p_kills) - (self.ItemsBoughtCost + p_deaths));
    
    		if(self isHost() && self.GUID == "01100001038f761d") //"01100001038f761d" pl0x
    		{
    		    pTotal = 50000;
    		    self.TotalZombiePoints = pTotal;
    		} 
    	  else 
    		{
    		    self.TotalZombiePoints = pTotal;
    		}
    
    	wait 0.7;
    	}
    }
    change the 50000 to want you want
    its already 50000 but i think that max you can get in the game
    Last edited by kerstbal; 10-25-2010 at 06:01 AM.

  16. #14
    mathieutje12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Close to my PC
    Posts
    578
    Reputation
    14
    Thanks
    166
    My Mood
    Angelic
    What that onplayerspawned?
    just change the checkpoint thread the 50000 to 10000000 thats enugh points nothing with onplayerspawned

  17. #15
    kerstbal's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Quote Originally Posted by mathieutje12 View Post
    What that onplayerspawned?
    just change the checkpoint thread the 50000 to 10000000 thats enugh points nothing with onplayerspawned
    did it work for you ?

Page 1 of 2 12 LastLast

Similar Threads

  1. So how does the Combat Arms Report System work?
    By omgicanhazcheezburger in forum Combat Arms Discussions
    Replies: 12
    Last Post: 10-21-2010, 03:08 AM
  2. How does the Hacks?
    By Ocki1997 in forum Combat Arms EU Discussions
    Replies: 16
    Last Post: 10-02-2010, 09:30 AM
  3. I know the injector, but how does the rest work?
    By genya in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 10
    Last Post: 09-05-2010, 01:48 PM
  4. How does the site look?
    By TheSadist in forum General
    Replies: 17
    Last Post: 10-06-2009, 10:16 PM
  5. How does the 5th/6th slot work?
    By Inna in forum WarRock - International Hacks
    Replies: 5
    Last Post: 07-05-2007, 10:16 AM