13.09.2011, 06:10
Do you have a register system? If you are saving VIP's then it's possible. You need to create it by yourself with mapping a room. Then create a teleport only for VIP's for example:\
pawn Код:
CMD:viproom(playerid, params[])
{
if(PlayerInfo[playerid][Vip] < 0) return SendClientMessage(playerid, COLOR_RED, ".:: Error: You cannot enter this room since you aren't VIP! ::.")
SetPlayerPos(Playerid. x, y, z);
SendClientMessage(playerid, COLOR_WHITE, "[SERVER] Welcome! You entered the VIP room!");
// This is just a example. This will help you to start.
}