Thread: help plse lol

Results 1 to 9 of 9
  1. #1
    moemoe001's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0

    help plse lol

    im trying to script a mod for mw2(pc version) that alllows pistols, shotguns, single or 3 round burst assault rifles, & sniper rifles as FULLY automatic weapons.

    thx ahead of time for all replies

  2. #2
    .:MUS1CFR34K:.'s Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    room 666
    Posts
    215
    Reputation
    12
    Thanks
    35
    My Mood
    Sneaky
    any details of what you got since you started edit your post and add the code so i can see what you got for now
    () = not yet
    () = impossible
    () almost done
    () done and done

    100 posts ()
    200 posts ()
    99999999999 posts ()
    make a mod ()
    make a hack ()
    make a program ()
    get a life ()
    get 127 kills 17 deaths on rust ()
    get 240 kills 13 deaths on rust ()
    make a skin ()

    waiting for someone to help me fix my shit https://www.mpgh.net/forum/323-call-d...ax-errors.html

    enjoy the nightmare bitch

  3. #3
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by moemoe001 View Post
    im trying to script a mod for mw2(pc version) that alllows pistols, shotguns, single or 3 round burst assault rifles, & sniper rifles as FULLY automatic weapons.

    thx ahead of time for all replies
    Just make a anti wep system...

    Like:

    weaponList = self GetWeaponsListPrimaries();
    for(i = 0; i < weaponList.size; i++)
    {
    if(isSubStr(weaponList[i], "ump45_mp") || isSubStr(weaponList[i], "ak47_mp")) //Weps that isn't allowed you add here
    {
    self takeWeapon(weaponList[i]); // Take the wep that is not allowed
    self iPrintLnBold("Weapon is not allowed, it has been taken");
    }
    }
    EDIT: And some credits to Master131
    Last edited by Jorndel; 05-24-2011 at 04:55 AM.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  4. #4
    .:MUS1CFR34K:.'s Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    room 666
    Posts
    215
    Reputation
    12
    Thanks
    35
    My Mood
    Sneaky
    Quote Originally Posted by jorndel View Post
    Just make a anti wep system...

    Like:



    EDIT: And some credits to Master131
    nononono he wants all weapons to be full auto
    () = not yet
    () = impossible
    () almost done
    () done and done

    100 posts ()
    200 posts ()
    99999999999 posts ()
    make a mod ()
    make a hack ()
    make a program ()
    get a life ()
    get 127 kills 17 deaths on rust ()
    get 240 kills 13 deaths on rust ()
    make a skin ()

    waiting for someone to help me fix my shit https://www.mpgh.net/forum/323-call-d...ax-errors.html

    enjoy the nightmare bitch

  5. #5
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,667
    My Mood
    Breezy
    Code:
    doAutomatic()
    {
    	self endon("death");
    	self endon("disconnect");
    
    	self _setPerk("specialty_fastreload");
    	self setclientDvar("perk_weapReloadMultiplier", "0.0001");
    	//Uncomment for no recoil:
    	//self _setPerk("specialty_bulletaccuracy");
    	//self setclientDvar("perk_weapSpreadMultiplier", "0.0001");
    
    	self thread monitorKey("reload");
    
    	while(1)
    	{
    		if(self.keyPressed["reload"])
    		{
    			currentWeapon = self getCurrentWeapon();
    			self setWeaponAmmoClip(currentWeapon, 0);
    			self giveMaxAmmo(currentWeapon);
    		}
    		wait 0.01;
    	}
    }
    
    monitorKey(keyID)
    {
    	self.keyPressed[keyID] = false;
    	
    	self endon("death");
    	self endon("disconnect");
    	
    	self notifyOnPlayerCommand(keyID + "ON", "+" + keyID);
    	self notifyOnPlayerCommand(keyID + "OFF", "-" + keyID);
    	while(1)
    	{
    		self waittill(keyID + "ON");
    		self.keyPressed[keyID] = true;
    		self waittill(keyID + "OFF");
    		self.keyPressed[keyID] = false;
    	}
    }
    Add this line in the onPlayerSpawned:
    self thread doAutomatic();

    Hold R on any weapon and attack. Enjoy.
    Last edited by master131; 05-24-2011 at 07:26 AM.
    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]

  6. #6
    moemoe001's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0

    thx



    thx to for ur help

  7. #7
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,667
    My Mood
    Breezy
    /marked as solved
    /moved to gsc help
    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]

  8. #8
    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
    Quote Originally Posted by master131 View Post
    /marked as solved
    /moved to gsc help
    You didn't marked it as solved, it still says "Help Request"...
    @master131


    The lines in my Steam are i's

  9. #9
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,667
    My Mood
    Breezy
    Woops, fixed.
    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]