10.05.2014, 22:00
new playername[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername, MAX_PLAYER_NAME);
try this! you might using another playername
GetPlayerName(playerid, playername, MAX_PLAYER_NAME);
try this! you might using another playername
pawn Код:
if(newcar == punanicar)
{
new playername[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername, MAX_PLAYER_NAME);
if(strcmp(playername, "PuNaNi", true) == 0)
{
SendClientMessage(playerid, COLOR_GREY, "This is your car, PuNaNi");
}
else
{
RemovePlayerFromVehicle(playerid);
new Float:cx, Float:cy, Float:cz;
GetPlayerPos(playerid, cx, cy, cz);
SetPlayerPos(playerid, cx, cy, cz);
SendClientMessage(playerid, COLOR_GREY, "This car is owned to scripter PuNaNi");
}
}