28.09.2012, 15:43
(
Последний раз редактировалось Coringa_Vilao; 07.11.2015 в 01:40.
)
Resolvido !
public OnPlayerSpawn(playerid)
{
new mtemp[256];
format(mtemp,256,"Policia Militar\n==================\nLнder: %s\n==================\nSub-Lнder: %s\n==================",InfoOrg[1][Lider],InfoOrg[1][SubLider]);
Update3DTextLabelText(mtemp, 0x00BFFFFF, 1545.0447,-1675.2751,13.5596, 20.0,0);
return 1;
}
new Text3D:mtemp;
mtemp = Create3DTextLabel("Policia Militar\n==================\nLнder: %s\n==================\nSub-Lнder: %s\n==================",InfoOrg[1][Lider],InfoOrg[1][SubLider]);
Update3DTextLabelText(mtemp, 0x00BFFFFF, 1545.0447,-1675.2751,13.5596, 20.0,0);
new String[128];
format(String,128,"Policia Militar\n==================\nLнder: %s\n==================\nSub-Lнder: %s\n==================",InfoOrg[1][Lider],InfoOrg[1][SubLider]);
Update3DTextLabelText(mtemp, 0x00BFFFFF, String);
// COLOQUE NO ONGAMEMODEINIT:
SetTimer("CallMe", 60 * 1000,true);
// FINAL DO GAMEMODE PO
forward CallMe();public CallMe(){
new String[128];
format(String,128,"Policia Militar\n==================\nLнder: %s\n==================\nSub-Lнder: %s\n==================",InfoOrg[1][Lider],InfoOrg[1][SubLider]);
Update3DTextLabelText(mtemp, 0x00BFFFFF, String);
return true;
}