Hi,
Wie mache ich, dass nur Admins das hören können ?
Bei
for(new i=0; i<MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pAdmin] < 1)
{
PlayAudioStreamForPlayer(i, "http://******.tk/Adio/***.mp3");
return 1;
}
}
MfG
Hi,
Wie mache ich, dass nur Admins das hören können ?
Bei
for(new i=0; i<MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pAdmin] < 1)
{
PlayAudioStreamForPlayer(i, "http://******.tk/Adio/***.mp3");
return 1;
}
}
MfG
wieso ist doch richtig
sry so vielleicht
for(new i=0; i<MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pAdmin] > 1)
{
PlayAudioStreamForPlayer(i, "http://******.tk/Adio/***.mp3", 0.0, 0.0, 0.0, 0.0);
return 1;
}
}
Ne, das bringt leider auch nichts ...
MfG
Tu das return 1; raus.
Ne, dann wird auch nichts abgespielt...
MfG
for(new i=0; i<MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pAdmin] > 1)
{
PlayAudioStreamForPlayer(i,/*oder playerid*/"http://******.tk/Adio/***.mp3");
}
}
Edit: jetzt wars richtig zufrüh auf Absenden
Edit2 noch richtig eingerückt
Edit3: // zu n/*...*/ geändert
versuch mal so
for(new i=0; i<GetMaxPlayers(); i++)
{
if(PlayerInfo[i][pAdmin] > 1)
{
PlayAudioStreamForPlayer(i,/*oder playerid*/"http://******.tk/Adio/***.mp3");
}
}
//EDIT
achso hat sich schon erledigt
Ne, bringt alles auch nichts
Bin hier schon am verzweifeln ...
Ne, bringt alles auch nichts
Bin hier schon am verzweifeln ...
mal ne kleine Frage... wo schreibst du das denn rein? Zeig mal den Befehl (als Code) or what ever...
Zeig mal den Code sonst können wir dir nicht helfen
so eig
haste das " vergessen
PlayAudioStreamForPlayer(playerid, "http://bigcity-reallife.tk/Funk/1.mp3", 0.0, 0.0, 0.0, 0.0);
//so soll es
PlayAudioStreamForPlayer(playerid, "http://bigcity-reallife.tk/Funk/1.mp3, 0.0, 0.0, 0.0, 0.0");
//so war es bei dir
Ok, danke für deine Hilfe