SA-MP Forums Archive
Another Problem. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Another Problem. (/showthread.php?tid=232266)



Another Problem. - Manuwar - 27.02.2011

Why when i change team, the Text AZTECAS Don't Change?

Thanks for help ^^


Re: Another Problem. - YungGee - 27.02.2011

ahhhh
...
Any code?


Re: Another Problem. - Manuwar - 27.02.2011

Sorry lol

Код:
public OnPlayerRequestClass(playerid, classid)
{
	SetPlayerPos(playerid,1854.4509,-2004.3757,13.5469);
	SetPlayerCameraPos(playerid,1850.5461,-2006.2437,13.5469);
	SetPlayerCameraLookAt(playerid,1854.4509,-2004.3757,13.5469);
    {
    new string[50];
    format(string, sizeof(string), "GROOVE", playerid);
    GameTextForPlayer(playerid, string, 3000, 4);
}

    {
    new string[50];
    format(string, sizeof(string), "BALLAS", playerid);
    GameTextForPlayer(playerid, string, 3000, 4);
}

	{
    new string[50];
    format(string, sizeof(string), "VAGOS", playerid);
    GameTextForPlayer(playerid, string, 3000, 4);
}

    {
    new string[50];
    format(string, sizeof(string), "POLIZIA", playerid);
    GameTextForPlayer(playerid, string, 3000, 4);
}

    {
    new string[50];
    format(string, sizeof(string), "AZTECAS", playerid);
    GameTextForPlayer(playerid, string, 3000, 4);
}
	return 1;
}



Re: Another Problem. - Face9000 - 27.02.2011

Look the code again...


Re: Another Problem. - Manuwar - 27.02.2011

Fixed.