Results 1 to 4 of 4
  1. #1
    dsillman2000's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Confused

    Question [Help Request]wallhack customization?

    Lets get to the point.

    Today, I'm trying to make a wallhack that has the same effect as thermalFOF, but I would like to replace those squares with dead player icons. Help?

    do you think this would work?

    Code:
    iconDisplay()
    {
    	self endon("disconnect");
    
    	while(self ButtonPressed("BUTTON_B")
    	{
    	
    		if(entity.team == "enemies")
    		{
    			iconOrigin = entity.getTagOrigin( "head");
    			newenemyicon = newHudElem();
    			newenemyicon.x = iconOrg[0];
    			newenemyicon.y = iconOrg[1];
    			newenemyicon.z = iconOrg[2];
    			newenemyicon setShader("headicon_dead", 7, 7);
    		}
    		self iPrintlnBold( "Enabling Hack : HACK_WALLHACK");
    	}
    	wait .05;
    }
    Last edited by dsillman2000; 09-30-2012 at 05:04 PM.

  2. #2
    dsillman2000's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Confused
    UPDATED CODE:

    Code:
    iconDisplay()
    {
    	self endon("disconnect");
    
    	for(;;)
    	{
    		while(self ButtonPressed("BUTTON_B"))
    		{
    		
    			if(player.isHost = 0 && player.team == "axis" && player.isReallyAlive)
    			{
    				iconOrigin = player getTagOrigin( "head");
    				newenemyicon = newHudElem();
    				newenemyicon.x = iconOrigin[0];
    				newenemyicon.y = iconOrigin[1];
    				newenemyicon.z = iconOrigin[2];
    				newenemyicon setShader("headicon_dead", 7, 7);
    			}
    			if(player.isHost = 0 && player.team == "axis" && player.isReallyAlive = 0)
    			{
    				newdeadenemyicon = newHudElem();
    				newdeadenemyicon.x = iconOrigin[0];
    				newdeadenemyicon.y = iconOrigin[1];
    				newdeadenemyicon.z = iconOrigin[2];
    				newdeadenemyicon setShader("cardicon_knife", 7, 7);
    				wait 3;
    				newdeadenemyicon setShader("none", 7, 7);
    			}
    				
    			self iPrintlnBold( "Enabling Hack : HACK_WALLHACK");
    		}
    	wait .05;
    	}
    }


    ---------- Post added at 07:55 PM ---------- Previous post was at 05:58 PM ----------

    Come on, no one can tell whether or not this would work/if it has any syntax errors?

  3. #3
    Nachos's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Between Equator and The North Pole
    Posts
    2,984
    Reputation
    176
    Thanks
    919
    My Mood
    Blah
    You can just try it yourself to find out whether it works or not.


    The lines in my Steam are i's

  4. #4
    dsillman2000's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Confused
    Tried, failed. Any other ideas?

Similar Threads

  1. Custom User Titles?
    By Dave84311 in forum News & Announcements
    Replies: 1
    Last Post: 05-02-2006, 10:33 AM
  2. How I make wallhack?
    By RaidenDXX in forum WarRock - International Hacks
    Replies: 6
    Last Post: 01-23-2006, 01:28 PM
  3. Hacks for Warrock (Aimbot, Wallhack)
    By Clarity in forum WarRock - International Hacks
    Replies: 32
    Last Post: 01-19-2006, 05:30 PM
  4. [SEARCHING]Wallhack or Radar
    By stfustfu in forum WarRock - International Hacks
    Replies: 0
    Last Post: 01-12-2006, 11:37 PM