[AJUDA] public OnPlayerSpawn - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] public OnPlayerSpawn (
/showthread.php?tid=337814)
[AJUDA] public OnPlayerSpawn -
peumenezes - 27.04.2012
Olб pessoal eu pedir ajuda antes pra colocar esse code que eu tenho para quando o player entre aparecer o logo, em cima sу dos adms
pawn Код:
if(strcmp(cmdtext,"/logoadm", true) == 0)
{
if(IsPlayerAdmin(playerid) || pAdmin[playerid] >= 1 )
{
if(IsPlayerAdmin(playerid)) print("logado como rcon");
if(pAdmin[playerid] > 0 ) print("logado como adm");
SetPlayerAttachedObject(playerid, 1, 18749, 1, 0.800000, 0.000000, 0.000000, 156.986312, 100.000000, 20.000000, 1.332795, 2.000000, 1.486337 ); // SAMPLogoSmall
}
else
{
print("nao й adm rcon, nem padmim"), printf("%i",pAdmin[playerid]);
SendClientMessage(playerid, GREEN, " Vocк nгo й um adminstrador");
}
return 1;
}
ai fiz assim, mais ainda nгo ta prestando.
pawn Код:
}
if(IsPlayerAdmin(playerid) || pAdmin[playerid] >= 1)
{
SetPlayerAttachedObject(playerid, 1, 18749, 1, 0.800000, 0.000000, 0.000000, 156.986312, 100.000000, 20.000000, 1.332795, 2.000000, 1.486337 ); // SAMPLogoSmall
}
Alguйm sabe me ajuda ai ?
Re: [AJUDA] public OnPlayerSpawn -
leosivi - 28.04.2012
TENTE:
pawn Код:
if(strcmp(cmdtext,"/logoadm", true) == 0)
{
if(PlayerInfo[playerid][pAdmin] < 1)
{
if(PlayerInfo[playerid][pAdmin] < 1) print("logado como rcon");
if(pAdmin[playerid] > 0 ) print("logado como adm");
SetPlayerAttachedObject(playerid, 1, 18749, 1, 0.800000, 0.000000, 0.000000, 156.986312, 100.000000, 20.000000, 1.332795, 2.000000, 1.486337 ); // SAMPLogoSmall
}
else
{
print("nao й adm rcon, nem padmim"), printf("%i",pAdmin[playerid]);
SendClientMessage(playerid, GREEN, " Vocк nгo й um adminstrador");
}
return 1;
}