[HELP]Help me
#1

Hey all how to show that a player is VIP when he is logged in
Like : You have Sucessfully logged in .
You are VIP level 5

How to show that can anyone help?
Reply
#2

This is server support not scripting support.. However here's a snippit from my gamemode.

pawn Код:
if(pInfo[playerid][pVIP] > 1) //Checking if the players vip level is above 1
{
    new string[60];
    format(string, sizeof(string), "You have logged in as a level %d VIP memer!", pInfo[playerid][pVIP]);
    SendClientMessage(playerid, -1, string);
}
Put that somewhere in your login script once the player has been logged in.
(Sorry for the awful indentations, forums broke it)
Reply
#3

+rep ty
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)