ItsMods

Full Version: Akimbo any weapon?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Would like to have a plugin for changing any weapon to akimbo.
Is possible to get it?
thanks in advanced
(12-27-2012, 21:37)SirGravzy Wrote: [ -> ]Probably easy, something like;
if text = !akimbo then
Primary. 'Akimbo code here
chattype. none

bla

Thats perfect! You just forgot code tags Troll
http://www.itsmods.com/forum/Thread-Requ...asses.html
I explained a lot about akimbo there.
I think it will be something like this

CSHARP Code
  1. public override ChatType OnSay(String Message, ServerClient Client, bool Teamchat)
  2. {
  3. if (Message == "!akimbo")
  4. {
  5. Client.Other.PrimaryWeaponAkimbo = true; //Primary weapon set to akimbo
  6. Client.Other.SecondaryWeaponAkimbo = true; //Secondary weapon set to akimbo
  7. }
  8. }


Oh derp didn't knew that it was a request Tongue
I will make it but I don't think everygun is possible
Already busy for 20 mins now. Shit long code but ye I hope you will need it Tongue.

Okay, made it. Released on
http://www.itsmods.com/forum/Thread-Rele...kimbo.html
If you need any help with the code, I can explain you it.