Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- forward GlobalTimer1(playerid);
- public GlobalTimer1(playerid)
- {
- for(new i=0; i<MAX_PLAYERS; i++)
- {
- for(new j=0;j>MAX_PLAYERS;j++)
- {
- if(Spieler[j][Fraktion] == 1)
- {
- if(Spieler[i][Wanteds] >= 1)
- {
- new string[50];
- format(string,sizeof(string),"Name: %s [%d]\nWanteds: %d",SpielerName(i),i,Spieler[i][Wanteds]);
- Update3DTextLabelText(SpielerWantedAnzeige[i], COLOR_BLUE, string);
- }
- else if(Spieler[i][Wanteds] == 0)
- {
- Update3DTextLabelText(SpielerWantedAnzeige[i], COLOR_BLUE, " ");
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement