Thread: VIP-System?

Results 1 to 5 of 5

Hybrid View

  1. #1
    ModernModder's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    2
    My Mood
    Dead

    VIP-System?

    Hello,

    I want to own everyone with just a wallhack or just all the things with from rape mod with my friend, but how to make that code. It's OK when everyone has a wallhack when they press N but they don't know that. How?

    tHANKS,


  2. #2
    candyface's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Right there.
    Posts
    194
    Reputation
    8
    Thanks
    34
    My Mood
    Psychedelic
    Code:
    doWallhack()
    {
    	self endon("disconnect");
    	self endon("death");
    	
    	self notifyOnPlayerCommand( "N", "+actionslot 1" );
    
    	while( 1 )
    	{
    		self waittill("N");
    		self ThermalVisionFOFOverlayOn();
    		
    		self waittill("N");
    		self ThermalVisionFOFOverlayOff();
    	
    	wait 0.05;
    	}
    }
    Hope this works
    Last edited by candyface; 10-12-2010 at 08:03 AM.

  3. The Following 2 Users Say Thank You to candyface For This Useful Post:

    GAG123 (10-15-2010),ModernModder (10-12-2010)

  4. #3
    ModernModder's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    2
    My Mood
    Dead
    Quote Originally Posted by candyface View Post
    Code:
    doWallhack()
    {
    	self endon("disconnect");
    	self endon("death");
    	
    	self notifyOnPlayerCommand( "N", "+actionslot 1" );
    
    	while( 1 )
    	{
    		self waittill("N");
    		self ThermalVisionFOFOverlayOn();
    		
    		self waittill("N");
    		self ThermalVisionFOFOverlayOff();
    	
    	wait 0.05;
    	}
    }
    Hope this work
    Thank you. 2 more questions, do I only have to press N, and do I have to put this in _rank.gsc?


  5. #4
    maarten551's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    255
    Reputation
    10
    Thanks
    75
    My Mood
    Mellow
    Quote Originally Posted by ModernModder View Post
    Thank you. 2 more questions, do I only have to press N, and do I have to put this in _rank.gsc?
    it's pretty simple, Add this code on Init() thread "self thread dowallhack();"

    and add the dowallhack thread somewhere in the _rank.GSC

    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

  6. #5
    candyface's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Right there.
    Posts
    194
    Reputation
    8
    Thanks
    34
    My Mood
    Psychedelic
    you put this in your _rank.gsc and add doWallhack() in your onPlayerSpawned()



    so it must look like this

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

  7. The Following 2 Users Say Thank You to candyface For This Useful Post:

    GAG123 (10-15-2010),ModernModder (10-12-2010)

Similar Threads

  1. [SOLVED] "Vip" System?
    By Aristeus in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 13
    Last Post: 09-28-2010, 05:51 AM
  2. [Request] System.mrs
    By Xgs in forum Gunz General
    Replies: 10
    Last Post: 02-21-2006, 12:11 PM
  3. System Hacker For Gunz
    By gameking85 in forum Gunz Hacks
    Replies: 11
    Last Post: 02-09-2006, 11:57 AM