[HELP] Little Script
#1

Код:
C:\gf.pwn(5325) : warning 219: local variable "PlayerName" shadows a variable at a preceding levelver used: "PlayerName1"
pawn Код:
if(newcar == punanicar)
    {
        new PlayerName[MAX_PLAYER_NAME];
        GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
        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");
        }
    }
Reply
#2

new playername[MAX_PLAYER_NAME];
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");        
    }    
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)