11.08.2014, 23:54
pawn Код:
CMD:vencimento(playerid)
{
if ( !IsPlayerVIP(playerid)) return SendClientMessage(playerid, Default, "| ERRO | {FFFFFF}Vocк nгo й VIP.");
new Str[100], Name[24];
GetPlayerName(playerid, Name, 24);
format ( Str, sizeof Str, "{FFFFFF}Conta VIP: %s \n\n Vencimento: %d dias", Name, GetExpirationDays(playerid));
ShowPlayerDialog(playerid, 775+1, DIALOG_STYLE_MSGBOX, "{FFFFFF}Vencimento VIP ", Str, "Fechar", "");
return 1;
}