Raised This Month: $32 Target: $400
 8% 

[REQ]Throw Grenade on Right click


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Iwon
BANNED
Join Date: Jul 2008
Old 08-06-2008 , 17:49   [REQ]Throw Grenade on Right click
Reply With Quote #1

Its for my plugin Please!
Iwon is offline
Exolent[jNr]
Veteran Member
Join Date: Feb 2007
Location: Tennessee
Old 08-06-2008 , 18:02   Re: [REQ]Throw Grenade on Right click
Reply With Quote #2

I'm not at my house so I can't test, but this should work.

Code:
#include <amxmodx> #include <fakemeta> public plugin_init() {     register_plugin("Right Click Grenade", "0.1", "Exolent");     register_forward(FM_CmdStart, "FwdCmdStart"); } public FwdCmdStart(plr, uc_handle, seed) {     if( !is_user_alive(plr) )     {         return FMRES_IGNORED     }         #if AMXX_VERSION_NUM < 180     new clip, ammo, weapon = get_user_weapon(plr, clip, ammo);     #else     new weapon = get_user_weapon(plr);     #endif         if( weapon != CSW_HEGRENADE )     {         return FMRES_IGNORED;     }         new button = get_uc(uc_handle, UC_Buttons);     if( button&IN_ATTACK2 )     {         button &= ~IN_ATTACK2;         button |= IN_ATTACK;                 set_uc(uc_handle, UC_Buttons, button);         return FMRES_SUPERCEDE;     }         return FMRES_IGNORED; }
__________________
No private work or selling mods.
Quote:
Originally Posted by xPaw View Post
I love you exolent!

Last edited by Exolent[jNr]; 08-06-2008 at 18:17.
Exolent[jNr] is offline
Iwon
BANNED
Join Date: Jul 2008
Old 08-06-2008 , 18:08   Re: [REQ]Throw Grenade on Right click
Reply With Quote #3

I only want it to throw a He Grenade And block flash bang and smoke

Compiles fine ain't tested.
Iwon is offline
Iwon
BANNED
Join Date: Jul 2008
Old 08-08-2008 , 08:29   Re: [REQ]Throw Grenade on Right click
Reply With Quote #4

thank you
Iwon is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 04:28.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode