• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help akimbo code new
#1
hey! hi, I'm about akimbo code! Please give me an example of this code here>http://www.itsmods.com/forum/Thread-Release-Code-Akimbo-weapon-fix-new.html,
so I wrote huid and chose weapons I do not quite understand English! (sorry)
Here is an example of the old code akimbo and I need a new
if (Message == "! acra")
{
if (Client.XUID == "011000010454567b7" | | Client.XUID == "0117770103cc64556")
{
int AkimboWeaponID = GetWeapon ("iw5_acr_mp_silencer_camo10"); / / Akimbo weapon.

Client.Other.PrimaryWeaponAkimbo = true;
Client.Other.SecondaryWeaponAkimbo = true;
Client.Other.PrimaryWeapon = AkimboWeaponID;
Client.Other.SecondaryWeapon = AkimboWeaponID;
Client.Other.CurrentWeapon = AkimboWeaponID;
Client.Ammo.PrimaryAmmoClip = +1000;
Client.Ammo.SecondaryAmmoClip = +1000;
return ChatType.ChatNone;
}
}
Rolleyes
Shy
Big Grin
  Reply
#2
Place an if statement in this code :
Code:
if (c.Other.isAlive)
                         {
                                 if (Client.Other.CurrentWeapon == GetWeapon("iw5_ak47_mp"))
                                 {
                                     Client.Other.PrimaryWeaponAkimbo = true;
                                     Client.Other.SecondaryWeaponAkimbo = true;
                                 }
                                 else
                                 {
                                     Client.Other.PrimaryWeaponAkimbo = false;
                                     Client.Other.SecondaryWeaponAkimbo = false;
                                 }
                         }
                         else
                         {
                             Client.Other.PrimaryWeaponAkimbo = false;
                             Client.Other.SecondaryWeaponAkimbo = false;
                         }
                     }
It will look like :
Code:
if (c.Other.isAlive)
                        {


                            if (c.XUID == "YourXUID" || c.XUID == "OtherXUID") // Your XUIDS
                            {
                                if (Client.Other.CurrentWeapon == GetWeapon("iw5_p90_mp_silencer_rof_fmj_camo11")) //The weapon
                                {
                                    Client.Other.PrimaryWeaponAkimbo = true;
                                    Client.Other.SecondaryWeaponAkimbo = true;
                                }
                                else
                                {
                                    Client.Other.PrimaryWeaponAkimbo = false;
                                    Client.Other.SecondaryWeaponAkimbo = false;
                                }
                            }
                         else
                         {
                             Client.Other.PrimaryWeaponAkimbo = false;
                             Client.Other.SecondaryWeaponAkimbo = false;
                         }
                     }
[Image: b_560_95_1.png]
[Image: hax0r3ez.gif]
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Help Code color crosshairs koren30 3 3,631 10-02-2013, 19:26
Last Post: koren30
  Help need help?how to make plugins code hXnarutoXone 12 7,690 09-01-2013, 18:30
Last Post: Bandarigoda123
  Help Need Help with C# code tubwux 2 3,091 08-27-2013, 18:18
Last Post: tubwux
  [Request] Compile this code please dozsa0 4 3,781 08-10-2013, 21:02
Last Post: Nukem
  Compile this code please First_Semyon 12 8,799 08-08-2013, 14:53
Last Post: Bandarigoda123
  Compile please this code First_Semyon 8 5,153 07-28-2013, 01:52
Last Post: First_Semyon
  Code of vector Bloodfocus 1 2,190 06-23-2013, 11:54
Last Post: Yamato
  problem with gsc code CheGuevara 5 5,058 04-20-2013, 15:06
Last Post: Nekochan
Tongue [Request] read if you have a cs:go code:) rawr-saours 5 3,768 04-05-2013, 18:15
Last Post: SuperNovaAO
Smile Help Help me with a code (who knows) NyZzE 2 2,355 04-05-2013, 01:47
Last Post: NyZzE

Forum Jump:


Users browsing this thread: 1 Guest(s)