Posts: 173
Threads: 26
Joined: Dec 2011
Reputation:
0
Hello, I'm new in scripting and I need a little bit help with my luxadmin vip system. All works but I have no idea how to script VIP commands, can enyone help?
I used search, but I find nothing.
Sorry for bad english.
Posts: 353
Threads: 36
Joined: Apr 2011
Reputation:
0
We can help you only if you post whatever problems occurs ?
Errors etc?
Posts: 173
Threads: 26
Joined: Dec 2011
Reputation:
0
No Errors, nothing, I just need a PRO scripter who can script me some VIP commands.
Posts: 173
Threads: 26
Joined: Dec 2011
Reputation:
0
I can see, nobody wants to help me, to make some vip commands.
Posts: 371
Threads: 8
Joined: Aug 2012
20.08.2012, 18:11
(
Последний раз редактировалось DaTa[X]; 20.08.2012 в 18:46.
)
#include <ladmin> // add tis in your game mode
Код:
dcmd_heal(playerid,params[])
{
#pragma unused params
if(IsPlayerVipType(playerid,2))
{
SetPlayerHealth(playerid,100);
}
else
SendClientMessage(playerid,red,"ERROR: You need to be vip level (2) to use this command ");
return 1;
}
Posts: 173
Threads: 26
Joined: Dec 2011
Reputation:
0
Thank You, thats what I need. Thank You!