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

Target Player (%s)


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Ardonicek
Senior Member
Join Date: Feb 2013
Location: My home
Old 08-23-2013 , 08:38   Target Player (%s)
Reply With Quote #1

Hello, i want to force server a command to give player xp, but i don't know how to do it.

register_concmd("addxp", "HandleGive", ADMIN_RCON, "<name> <+/- xp>")

So it's addxp *name* *xp*

Now i want to insert it into case, which will do something like
addxp %s 100

but it doesn't work, what to do with %s ?
__________________
Latest plugin: dHUD Round | Timeleft
Ardonicek is offline
Send a message via ICQ to Ardonicek Send a message via Skype™ to Ardonicek
DWIGHTpN
Senior Member
Join Date: Jan 2013
Location: Romania.
Old 08-23-2013 , 09:09   Re: Target Player (%s)
Reply With Quote #2

PHP Code:
public plugin_init() {
                 
register_concmd("addxp","HandleGive",ADMIN_RCON,"<name> <xp>");
}

public 
HandleGive(id,level,cid) {
               if( !
cmd_access(id,level,cid,0) )
                           return 
PLUGIN_HANDLED;
               new 
arg[33],arg2[15];
               
read_argv(1,arg,charsmax(arg));
               
read_argv(2,arg,charsmax(arg2));
               new 
xp str_to_num(arg2);
               new 
player cmd_target(id,arg2|);
               if( !
player || !xp )
                          return 
PLUGIN_HANDLED;
      
// add exp at target..
      
return PLUGIN_HANDLED;

Quote:
Now i want to insert it into case, which will do something like
addxp %s 100
What do you say ?

Last edited by DWIGHTpN; 08-23-2013 at 09:14.
DWIGHTpN is offline
Ardonicek
Senior Member
Join Date: Feb 2013
Location: My home
Old 08-23-2013 , 09:12   Re: Target Player (%s)
Reply With Quote #3

Okay, but i would like to insert it to a menu, where they can buy XP for money,
i just need to know what should be in "case".
__________________
Latest plugin: dHUD Round | Timeleft
Ardonicek is offline
Send a message via ICQ to Ardonicek Send a message via Skype™ to Ardonicek
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 00:45.


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