Thread: need a tut

Results 1 to 6 of 6
  1. #1
    aagje323's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    need a tut

    need some help with the next,

    Add a 8-Shot to my Server,

    i found the code,

    https://www.mpgh.net/forum/308-call-d...40-8-shot.html

    But i dont know how to add it to my server, what to add where,

    I would also like,

    that the last survivor has an 9mm with AC130 bullets

    if you can do one of those two i would love you

  2. #2
    Clo239's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Fort Myers, Florida
    Posts
    460
    Reputation
    11
    Thanks
    43
    My Mood
    Bored
    https://www.mpgh.net/forum/308-call-d...ombie-mod.html

    Here the BSZ mod already has it in there.

  3. #3
    aagje323's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    i need it in my own mod im using atm, But i did the spas ac130 now, can you explain how to do the 9mm?

  4. #4
    Clo239's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Fort Myers, Florida
    Posts
    460
    Reputation
    11
    Thanks
    43
    My Mood
    Bored
    On last alive it would be something like this
    Code:
    			self takeAllWeapons();
    			self _clearPerks();
    			self giveWeapon("beretta_mp", 0, true);
    			self switchToWeapon("beretta_mp");
    			currentweapon = self GetCurrentWeapon();
    			self GiveMaxAmmo("beretta_mp");
    			self thread urname();

    And this would be placed anywhere

    Code:
    urname()
    {
            self endon("death");
        for(;;)
            {
                    self waittill( "weapon_fired" );
    				self.curWeap = self getCurrentWeapon();
    				if (isSubStr(self.curWeap, "beretta_mp"))
    				{
                    MagicBullet( "ac130_25mm_mp", self getTagOrigin("tag_eye"), self GetCursorPos(), self ); 
    				}
    				
    
            }
    }

  5. #5
    aagje323's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    both in the _rank.gsc, And its like a 9mm with ac130 shot ?

    And where do i excatly have to put it under, could you be more specific
    Last edited by aagje323; 03-08-2013 at 01:15 PM.

  6. #6
    Michaelclaw's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    15
    My Mood
    Happy
    THIS

    urname()
    {
    self endon("death");
    for(;
    {
    self waittill( "weapon_fired" );
    self.curWeap = self getCurrentWeapon();
    if (isSubStr(self.curWeap, "beretta_mp"))
    {
    MagicBullet( "ac130_25mm_mp", self getTagOrigin("tag_eye"), self GetCursorPos(), self );
    }


    }
    }



    Can be pasted anywhere in _rank.gsc


    THIS
    self takeAllWeapons();
    self _clearPerks();
    self giveWeapon("beretta_mp", 0, true);
    self switchToWeapon("beretta_mp");
    currentweapon = self GetCurrentWeapon();
    self GiveMaxAmmo("beretta_mp");
    self thread urname();

    Can be pasted in your doDvars() or OnPlayerSpawned


    Reply if you have anymore questions.

    Please Reply /Solved If this answered your question.

Similar Threads

  1. Need a TUT on how to make a hack
    By lewisno7 in forum Call of Duty Modern Warfare Help
    Replies: 2
    Last Post: 11-14-2009, 01:56 PM
  2. I need a tut on making crossfire hacks
    By bigboy12345 in forum Programming Tutorial Requests
    Replies: 0
    Last Post: 05-10-2009, 02:33 AM
  3. Do u NEED A TUT?
    By hunter3002 in forum Tutorials
    Replies: 6
    Last Post: 05-02-2009, 03:12 PM
  4. Need a TUT for VB6
    By Dichakill in forum WarRock - International Hacks
    Replies: 0
    Last Post: 12-31-2008, 01:00 PM
  5. Need a tut on making a UCE.
    By moris in forum Programming Tutorial Requests
    Replies: 8
    Last Post: 09-03-2008, 12:19 AM