06.06.2011, 22:42
Hi, all.
I recently downloaded a filterscript and tried to when you are a VIP and write /nameoff your name tag will dissappear.
This is the whole code of the VIP system:
http://pastebin.com/5Cii9AWN
//================MYCODE======================//
This is the code I'm using for the script. (Also you can see this code at the pastebin code.
Can anyone help making the code please ? :P Thanks already
I recently downloaded a filterscript and tried to when you are a VIP and write /nameoff your name tag will dissappear.
This is the whole code of the VIP system:
http://pastebin.com/5Cii9AWN
//================MYCODE======================//
This is the code I'm using for the script. (Also you can see this code at the pastebin code.
PHP код:
dcmd_vr(playerid,params[])
{
if(Pinfo[giveplayerid][Vip_Level] == 1)
{
if (strcmp("/nameoff", cmdtext, true) == 0)
{
for(new i = 0; i < MAX_PLAYERS; i++) ShowPlayerNameTagForPlayer(playerid, i, false);
GameTextForPlayer(playerid, "~W~Nametags ~R~off", 5000, 5);
return 1;
}
}
else
{
SendClientMessage(playerid,COLOR_RED,"You need to be a VIP to use this command!!");
}
return 1;
}
