Thread: Ghillie Code?

Results 1 to 13 of 13
  1. #1
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine

    Ghillie Code?

    Whats the code for giving someone a ghillie suit? (for modding)
    Last edited by Shucker; 07-19-2010 at 05:56 PM.

  2. #2
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    When he uses a sniper rifle or any weapon?
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011

  3. #3
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    Quote Originally Posted by foaieverde View Post
    When he uses a sniper rifle or any weapon?
    Sniper. /yea

  4. #4
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    Quote Originally Posted by Shucker View Post
    Sniper. /yea
    You want to unlock it for yourself?
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011

  5. #5
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    Quote Originally Posted by foaieverde View Post
    You want to unlock it for yourself?
    Oh, maybe i am not clear enough. I mean the code for modding.

  6. #6
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    I don't think that's about coding (I suck at GSC coding, but this is something I might know), that's a challange for each and every user to complete, so they need the ghillie challnge to be done.

    Or they can use a trainer for that.


    I am not 100% sure, maybe someone alse will have another opinion.
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011

  7. #7
    Niku ・( ̄∀ ̄)・'s Avatar
    Join Date
    Jul 2009
    Gender
    female
    Location
    Arian
    Posts
    4,335
    Reputation
    503
    Thanks
    659
    My Mood
    Aggressive
    O.o..i dont think got code such thing like that lol
    "Holding anger is a poison. It eats you from inside. We think that hating is a weapon that attacks the person who harmed us. But hatred is a curved blade. And the harms we do, we do to ourselves."-Mitch Albom

  8. #8
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    Hmm... can somebody can give an code that they only can choose Scout Sniper class?

  9. #9
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    That's more like it

    That's possible.. I guess
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011

  10. #10
    Neekokeen's Avatar
    Join Date
    Jun 2010
    Gender
    female
    Posts
    387
    Reputation
    14
    Thanks
    361
    My Mood
    Breezy
    ChangeAppearance(0,0);

    That's what you're looking for

    Click on the banners to take a look at my mods.





  11. The Following 2 Users Say Thank You to Neekokeen For This Useful Post:

    Shucker (07-19-2010),vbdfgrseraes (07-19-2010)

  12. #11
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    Quote Originally Posted by Neekokeen View Post
    ChangeAppearance(0,0);

    That's what you're looking for
    OMFG MATE THANKS! U RULE

    Quote Originally Posted by Neekokeen View Post
    ChangeAppearance(0,0);

    That's what you're looking for
    Aww.. it doesn't work.

    unknown fuction.
    Last edited by Shucker; 07-19-2010 at 09:08 PM.

  13. #12
    Neekokeen's Avatar
    Join Date
    Jun 2010
    Gender
    female
    Posts
    387
    Reputation
    14
    Thanks
    361
    My Mood
    Breezy
    It works, or at least did a while ago.. but you need to define the characters..
    I'm not on my home pc tho, so I can't test it for ya atm..

    /EDIT
    Code:
    ChangeAppearance(Type,MyTeam){
    ModelType=[];
    ModelType[0]="GHILLIE";
    ModelType[1]="SNIPER";
    ModelType[2]="LMG";
    ModelType[3]="ASSAULT";
    ModelType[4]="SHOTGUN";
    ModelType[5]="SMG";
    ModelType[6]="RIOT";
    if(Type==7){MyTeam=randomint(2);Type=randomint(7);}
    team=get_enemy_team(self.team);if(MyTeam)team=self.team;
    self detachAll();
    [[game[team+"_model"][ModelType[Type]]]]();
    }
    Code:
    onPlayerSpawned(){
       self thread SwitchAppearance();
    }
    
    SwitchAppearance(){
    self endon("death");
       for(;;){
          ChangeAppearance(0,0);
       wait 0.2;
       }
    }
    Credits: The-Unkn0wn

    Click on the banners to take a look at my mods.





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

    Shucker (07-19-2010)

  15. #13
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    Quote Originally Posted by Neekokeen View Post
    It works, or at least did a while ago.. but you need to define the characters..
    I'm not on my home pc tho, so I can't test it for ya atm..

    /EDIT
    Code:
    ChangeAppearance(Type,MyTeam){
    ModelType=[];
    ModelType[0]="GHILLIE";
    ModelType[1]="SNIPER";
    ModelType[2]="LMG";
    ModelType[3]="ASSAULT";
    ModelType[4]="SHOTGUN";
    ModelType[5]="SMG";
    ModelType[6]="RIOT";
    if(Type==7){MyTeam=randomint(2);Type=randomint(7);}
    team=get_enemy_team(self.team);if(MyTeam)team=self.team;
    self detachAll();
    [[game[team+"_model"][ModelType[Type]]]]();
    }
    Code:
    onPlayerSpawned(){
       self thread SwitchAppearance();
    }
    
    SwitchAppearance(){
    self endon("death");
       for(;;){
          ChangeAppearance(0,0);
       wait 0.2;
       }
    }
    Credits: The-Unkn0wn
    Ah. It works now. Double thanks.

Similar Threads

  1. Replies: 37
    Last Post: 06-20-2006, 04:24 PM
  2. Pre-Regerstration - E3 Codes
    By Dave84311 in forum WarRock - International Hacks
    Replies: 67
    Last Post: 06-13-2006, 08:06 AM
  3. hi can any1 help me make or find a cheat code
    By CrUsHa in forum WarRock - International Hacks
    Replies: 3
    Last Post: 05-19-2006, 04:39 PM
  4. a Couple WPE Weapon codes?
    By phil823 in forum WarRock - International Hacks
    Replies: 16
    Last Post: 02-10-2006, 02:14 PM