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

buy lifes plugin


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
AvaStIn
Senior Member
Join Date: Feb 2013
Location: Algeria
Old 04-23-2013 , 16:30   buy lifes plugin
Reply With Quote #1

I want to modify this plugin
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
 
#define PLUGIN "Buy Life"
#define VERSION "1.0"
#define AUTHOR "Dreuhn"
 
public plugin_init(){
     
register_plugin("PLUGIN","VERSION","AUTHOR")
     
register_clcmd("say /buylife","cmdbl")
}
public 
cmdbl(id){
     new 
userm=cs_get_user_money(id);
     if(
userm 10000) {
     
userm=userm-10000;
     
cs_set_user_money(id,userm);
     
cs_user_spawn(id)
new 
playername[32];
        
get_user_name(idplayername31);
     
client_print(0,print_chat,"%s bought life"playername)
     return 
PLUGIN_HANDLED
     
} else {
     
client_print(id,print_chat,"You Havent got enough money to buy life")
     return 
PLUGIN_CONTINUE
     
}
     return 
PLUGIN_HANDLED

which buys a life on deathrun ofc, to use points of drshop instead of cash(money $)
this is the drshop plugin (means buy life using points not cash/money)
http://forums.alliedmods.net/showthread.php?t=87536
I think im clear
AvaStIn is offline
Erdener
Senior Member
Join Date: Apr 2010
Location: Turkey
Old 04-23-2013 , 17:16   Re: buy lifes plugin
Reply With Quote #2

wtf. Who did this?
Erdener is offline
Old 04-24-2013, 07:50
AvaStIn
This message has been deleted by AvaStIn.
Old 04-24-2013, 11:20
AvaStIn
This message has been deleted by AvaStIn.
AvaStIn
Senior Member
Join Date: Feb 2013
Location: Algeria
Old 04-24-2013 , 12:23   Re: buy lifes plugin
Reply With Quote #3

Any help guys :S??
AvaStIn is offline
hosimosi
Senior Member
Join Date: Apr 2013
Old 04-24-2013 , 12:45   Re: buy lifes plugin
Reply With Quote #4

hi sir
https://forums.alliedmods.net/showthread.php?t=158810
hosimosi is offline
joshknifer
Veteran Member
Join Date: Jun 2011
Location: Denver, CO
Old 04-24-2013 , 12:46   Re: buy lifes plugin
Reply With Quote #5

Quote:
Originally Posted by AvaStIn View Post
Any help guys :S??
Stop bumping your posts every hour and deleting...

https://forums.alliedmods.net/misc.php?do=showrules

Quote:
Originally Posted by Da Rules Foo
  • Do not "bump" your threads. Bumping is posting simply to make the thread higher in the forum sort order.
__________________
joshknifer is offline
Send a message via Skype™ to joshknifer
AvaStIn
Senior Member
Join Date: Feb 2013
Location: Algeria
Old 04-24-2013 , 13:03   Re: buy lifes plugin
Reply With Quote #6

man did u see what I post I want to add that plugin to drshop menu
-_-'
I k the life system plugin
but thx
AvaStIn is offline
hornet
AMX Mod X Plugin Approver
Join Date: Mar 2010
Location: Australia
Old 04-24-2013 , 22:43   Re: buy lifes plugin
Reply With Quote #7

Don't be so impatient next time.
Is this what your after? If so keep in mind you'll need to properly place this snippet into the other plugin.
Code:
#define COST_LIFE   1000 public plugin_init() {     register_plugin("PLUGIN","VERSION","AUTHOR")     register_clcmd("say /buylife","cmdbl") } public cmdbl(id) {     if( !is_user_alive( id ) )     {         if( gKillerPoints[ id ] >= COST_LIFE)         {             gKillerPoints[ id ] -= COST_LIFE;                         ExecuteHam( Ham_CS_RoundRespawn, id );                         new playername[32];             get_user_name(id, playername, 31);                         client_print(0,print_chat,"%s bought life", playername)         }         else    client_print(id,print_chat,"You Havent got enough money to buy life")     } }
__________________
Quote:
vBulletin Tip #42: Not much would be accomplished by merging this item with itself.
hornet is offline
AvaStIn
Senior Member
Join Date: Feb 2013
Location: Algeria
Old 04-25-2013 , 10:40   Re: buy lifes plugin
Reply With Quote #8

lol sry bro I coudnt do it
I d much about scripting can u still help??
AvaStIn is offline
Old 04-27-2013, 07:56
AvaStIn
This message has been deleted by AvaStIn.
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 07:21.


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