Raised This Month: $51 Target: $400
 12% 

Simple buyhp plugin


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Moody92
Veteran Member
Join Date: May 2011
Location: Oman
Old 07-23-2012 , 10:27   Simple buyhp plugin
Reply With Quote #1

Hello, when some guy say /buyhp

he get +100 hp and it cost 16000$
Moody92 is offline
quilhos
Veteran Member
Join Date: Jun 2010
Old 07-23-2012 , 15:40   Re: Simple buyhp plugin
Reply With Quote #2

Next time search
http://forums.alliedmods.net/showthread.php?p=645756
__________________
ELO RATING SYSTEM - SQL [COMPLETE]
Quote:
Originally Posted by Liverwiz View Post
DDDRRRRAAAAMMMMAAAAA!!!???

Put this shit on pause while i go get some popcorn!!
quilhos is offline
pokemonmaster
princess milk
Join Date: Nov 2010
Location: Somewhere in this world
Old 07-23-2012 , 16:19   Re: Simple buyhp plugin
Reply With Quote #3

Code:
#include <amxmodx> #include <fun> #include <cstrike> #define PLUGIN "Buy Health" #define VERSION "1.0" #define AUTHOR "Khalid" new g_pCost, g_pHealth public plugin_init() {     register_plugin(PLUGIN, VERSION, AUTHOR)     register_clcmd("say /buyhp", "cmd_buyhp")     g_pCost = register_cvar("hp_cost", "16000")     g_pHealth = register_cvar("hp_amount", "100") } public cmd_buyhp(id) {     new iCost = get_pcvar_num(g_pCost)     new iUserMoney = cs_get_user_money(id)     if( cs_get_user_money(id) < iCost)     {         client_print(id, print_chat, "[AMXX] You need %d to buy health, current money: %d", iCost, iUserMoney )         return PLUGIN_HANDLED     }         client_print(id, print_chat, "[AMXX] You have bought 100 hp")     cs_set_user_money(id, iUserMoney - iCost, 1)     set_user_health( id, get_user_health(id) + get_pcvar_num(g_pHealth) )         return PLUGIN_HANDLED }
__________________
اَشْهَدُ اَنْ لَّآ اِلٰهَ اِلَّا اللہُ وَحْدَه لَا شَرِيْكَ لَه وَ اَشْهَدُ اَنَّ مُحَمَّدًا عَبْدُه وَرَسُوْلُه
No longer active in AMXX. Sorry.
pokemonmaster 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 22:15.


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