[Ajuda] Ajuda Modificar GM
#1

Eae Pessoas Blz Alguem ae poderia me ajudar a trocar o a imagem que aparece quando vc digita sua senha e vai para escolha de profissoes tipo estou montando um servidor com base no ppc_trucking v6 e Queria saber se alguem tambem poderia me dizer como eu poderia colocar um sistema de pontos em cima do mapa tipo fica

o mapa ai em cima dele Pontos:Sua quantidade de pontos

E so isso ae vlw se poder me ajudar eu agradeзo muito abraзos pra todos ae
Reply
#2

Altere isso no GM para mudar a posiзгo de fundo, nгo irб adiantar se for uma imagem em textdraw etc. :
SetPlayerCameraPos
SetPlayerCameraLookAt
SetPlayerPos

E, os pontos encima do mapa, vocк deve usar Textdraw
Ja existe alguns FS que tem essa funзгo, besta baixar, colocar no GM se quiser ou nгo, e tambйm se quiser alterar fica a vontade!
Achei isso, nгo testei:
pawn Код:
forward tdscoretimer(playerid);
new tdscore[MAX_PLAYERS];
new Textdraw1[MAX_PLAYERS];

public tdscoretimer()
{
    for(new i=0; i<MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            new tds[128];
            format(tds, sizeof(tds), "Score:%d",GetPlayerScore(i));
            TextDrawSetString(Textdraw1[i], tds);
        }
    }
    return 1;
}

public OnPlayerConnect(playerid)
{
    new tds[128];
    format(tds, sizeof(tds), "Score:%d",GetPlayerScore(playerid));
    Textdraw1[playerid] = TextDrawCreate(498.000000, 118.000000, tds);
    TextDrawShowForPlayer(playerid, Textdraw1[playerid]);
    return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
    TextDrawDestroy(Textdraw1[playerid]);
    return 1;
}

public OnGameModeInit()
{
    SetTimer("tdscoretimer", 5000, true);
    return 1;
}
Tem esse tambйm http://pastebin.com/WGiVxCaT , caso nгo estejam encima do mapa й so alterar as posiзхes.
Reply
#3

pawn Код:
sers\Familia\Desktop\PPC_Trucking6\gamemodes\PPC_Trucking.pwn(397) : error 021: symbol already defined:
"Streamer_OnPlayerConnect"
C:\Users\Familia\Desktop\PPC_Trucking6\gamemodes\PPC_Trucking.pwn(400) : warning 213: tag mismatch
C:\Users\Familia\Desktop\PPC_Trucking6\gamemodes\PPC_Trucking.pwn(401) : warning 213: tag mismatch
C:\Users\Familia\Desktop\PPC_Trucking6\gamemodes\PPC_Trucking.pwn(406) : error 021: symbol already defined: "Streamer_OnPlayerDisconnect"
C:\Users\Familia\Desktop\PPC_Trucking6\gamemodes\PPC_Trucking.pwn(407) : warning 213: tag mismatch
C:\Users\Familia\Desktop\PPC_Trucking6\gamemodes\PPC_Trucking.pwn(412) : error 021: symbol already defined: "Streamer_OnGameModeInit"
Reply
#4

tente criar um novo FS.
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)