[Help]Asignarle un color de nick a tal jugador
#1

bueno lo que quiero hacer es que cuando tal jugador entre al servidor se le cambie el color por uno ya definido, digamos que seria un tipo if

public OnPlayerConnect(playerid)
{

if (GetPlayerName(playerid, name, sizeof(name)) == '[TAG]nick')
{
SetPlayerColor(playerid, 0xAA3333AA);
}
return 1;
}



Bueno, Si Me Pudieran Ayudar A Resolver el Problema Se Los Agradecerнa...!
Reply
#2

pawn Код:
public OnPlayerConnect(playerid)
{
    new name[24];
    GetPlayerName(playerid, name, sizeof(name));

    if(strcmp(name, "[TAG]nick", true))
    {
        SetPlayerColor(playerid, 0xAA3333AA);
    }
    return 1;
}
Reply
#3

Gracias Bro..! xO tenia mucho q no Abria un GM DM xD...!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)