Raised This Month: $ Target: $400
 0% 

Need help


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
k1nader
Junior Member
Join Date: Dec 2009
Location: China.四川
Old 12-16-2009 , 22:50   Need help
Reply With Quote #1

can not buy more grenades
i do not know where the problem is.

PHP Code:
#include <amxmodx>
#include <cstrike>
#include <fun>
 
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "k1nader"
 
public plugin_init()
{
    
register_plugin(PLUGINVERSIONAUTHOR);
    
register_menucmd(register_menuid("BuyItem"1), 511"menuItem");
}
public 
client_command(id)
{
    new 
arg[13];
    if(
read_argv(0arg12)>11) return PLUGIN_CONTINUE;
 
    if(
equali(arg"hegren"))
    {
         new 
n_currentHE =  cs_get_user_bpammo(idCSW_HEGRENADE);
         if(
n_currentHE >= 3)
         {
             
client_print(idprint_center"You cannot carry anymore!");
             return 
PLUGIN_HANDLED;
         }
         
cs_set_user_bpammo(idCSW_HEGRENADE0);
         
give_item(id"weapon_hegrenade");
         
cs_set_user_bpammo(idCSW_HEGRENADEn_currentHE 1);
         return 
PLUGIN_HANDLED;
    }
    return 
PLUGIN_CONTINUE;
}
 
public 
menuItem(idkey)
{
    if(
key == 3)
    {
         new 
n_currentHE =  cs_get_user_bpammo(idCSW_HEGRENADE);
         if(
n_currentHE >= 3)
         {
             
client_print(idprint_center"You cannot carry anymore!");
             return 
PLUGIN_HANDLED;
         }
         
cs_set_user_bpammo(idCSW_HEGRENADE0);
         
give_item(id"weapon_hegrenade");
         
cs_set_user_bpammo(idCSW_HEGRENADEn_currentHE 1);
         return 
PLUGIN_HANDLED;
    }
    return 
PLUGIN_CONTINUE;

k1nader is offline
k1nader
Junior Member
Join Date: Dec 2009
Location: China.四川
Old 12-17-2009 , 13:14   Re: Need help
Reply With Quote #2

i'm sorry.
i user old version .
k1nader 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 15:27.


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