Thread: No noob tubes

Results 1 to 2 of 2
  1. #1
    JustAndy's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    62
    Reputation
    10
    Thanks
    2
    My Mood
    Fine

    Question No noob tubes

    grr
    im having trouble removing noob tubes from my mod,
    i dont really mind how i do it, ie replace a gun that has gl attached with a pistol ect or just set ammo for tube=0

    what i got so far

    Code:
    notube()
    {
    self endon("death");
    self endon("disconnect");
    
    	for(;;) {
    
    		if(self getCurrentWeapon() == "_gl"){
    
    		self takeWeapon("_gl");
    		self sayall("^0Im a noob"); }
    
    }
    am i doing the right thing? do i even have the right code for the noob tube?
    thanks

  2. #2
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,670
    My Mood
    Breezy
    Code:
    notube()
    {
        self endon("death");
        self endon("disconnect");
    
        for(;;)
        {
            if(isSubStr(self getCurrentWeapon(), "_gl"))
            {
    		self takeWeapon(self getCurrentWeapon());
    		self sayall("^0Im a noob"); 
            }
            wait 0.05;
        }
    }
    /marked as solved
    /moved to gsc help
    Last edited by master131; 05-24-2011 at 11:29 PM.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  3. The Following User Says Thank You to master131 For This Useful Post:

    JustAndy (05-25-2011)