[Ajuda] Skins npc
#1

hoje eu aprendi a criar npc etc...
queria saber como mudar skins delles usei isso...

pawn Код:
public OnPlayerConnect(playerid)
{
if(IsPlayerNPC(playerid))
{
static Nome_Npc[24];
GetPlayerName(playerid, Nome_Npc, sizeof(Nome_Npc));
    if(!strcmp(Nome_Npc,"meunpc",false)) // Nome do npc
    {
        SetPlayerSkin(playerid,0);  // Skin
    }
    if(!strcmp(Nome_Npc,"meunpc2",false))
    {
        SetPlayerSkin(playerid, 141);
    }
    if(!strcmp(Nome_Npc,"meunpc3",false))
    {
        SetPlayerSkin(playerid, 11);
    }
}
mas nгo deu em nada alguem poderia me explicar? agradeзo desde ja
Reply
#2

Код:
public OnPlayerConnect(playerid)
{
if(IsPlayerNPC(playerid))
{
static Nome_Npc[24];
GetPlayerName(playerid, Nome_Npc, sizeof(Nome_Npc));
    if(!strcmp(Nome_Npc,"meunpc",true)) // Nome do npc
    {
        SetPlayerSkin(playerid,0);  // Skin
    }
    if(!strcmp(Nome_Npc,"meunpc2",true))
    {
        SetPlayerSkin(playerid, 141);
    }
    if(!strcmp(Nome_Npc,"meunpc3",true))
    {
        SetPlayerSkin(playerid, 11);
    }
}
Reply
#3

ainda nгo deu pfv se alguem puder ajudar..
fiz varios npcs e seria legal se eles tivessem skin diferentes
Reply
#4

tente usar
pawn Код:
SetPlayerSkin(playerid,29);
dini_IntSet(file, "Skin", 29);}
no lugar de
pawn Код:
SetPlayerSkin(playerid, 11);
Reply
#5

Nгo sei se iria funcionar o SetPlayerSkin, pois nгo existe essa funзгo no a_npc.inc que e a include do proprio samp, ficaria melhor voce usar um Plugin de NPC como o FCNPC - https://sampforum.blast.hk/showthread.php?tid=428066
Reply
#6

MAS SE O NPC ESTIVER NO GM DELE IRA PEGAR
Reply
#7

Me passaram um assim... Funcionou.


pawn Код:
if(IsPlayerNPC(playerid)) {
    static skin;
    switch(skin) {
        case 0: {
            SetPlayerSkin(playerid, 162);
        }
        case 1: {
            SetPlayerSkin(playerid, 160);
        }
        case 2: {
            SetPlayerSkin(playerid, 79);
        }
        case 3: {
            SetPlayerSkin(playerid, 159);
        }
        case 4: {
            SetPlayerSkin(playerid, 178);
        }
    }
    skin++;
    return true;
}

Abraзo.
Reply
#8

Agradeзo a todos que tentaram me ajudar acho que estou fazendo algo errado...
aprendi a criar npc ontem ... vou estudar mais sobre isso vlw gnt *-*
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)