Hey mal ne Frage
Ich hab da ein Wanted Show system mit Chat Bubble
Hier sit das forward:
forward WantedShow();
Und hier das public
public WantedShow()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if(WantedLevel[i] == 0)
{
return 1;
}
if(WantedLevel[i] == 1)
{
SetPlayerChatBubble(i,"Wanted: 1", COLOR_YELLOW, 20.0, 6000);
return 1;
}
if(WantedLevel[i] == 2)
{
SetPlayerChatBubble(i,"Wanted: 2", COLOR_YELLOW, 20.0, 6000);
return 1;
}
if(WantedLevel[i] == 3)
{
SetPlayerChatBubble(i,"Wanted: 3", COLOR_YELLOW, 20.0, 6000);
return 1;
}
if(WantedLevel[i] == 4)
{
SetPlayerChatBubble(i,"Wanted: 4", COLOR_YELLOW, 20.0, 6000);
return 1;
}
if(WantedLevel[i] == 5)
{
SetPlayerChatBubble(i,"Wanted: 5", COLOR_YELLOW, 20.0, 6000);
return 1;
}
if(WantedLevel[i] == 6)
{
SetPlayerChatBubble(i,"Wanted: 6", COLOR_YELLOW, 20.0, 6000);
return 1;
}
}
return 1;
}
Aber wenn ingame jemand wanteds hat zeigt er es nicht Oo