Bom preciso de ajuda de como colocar esse fs no meu gm ser dar erro!!
E TAMBEM QUE ME AJUDEM MEU GM NAO DA PRA FALAR NO CHAT ? OQUE FASSO!!
CODIGO QUE NAO SEI COLOCAR
O Do DJ: Codigo:
if(strcmp(cmd, "/Tocar", true) == 0 && PlayerInfo[playerid][pAdmin] >= 5)
{
new str[128];
new pname[MAX_PLAYER_NAME];
str = strrest(cmdtext,idx);
if(!strlen(str)) return SendClientMessage(playerid, -1, "Use: /Tocar [URL]");
GetPlayerName( playerid , pname, sizeof(pname));
format(string, sizeof(string), "{00FF00}Administrador{FFFFFF} %s {00FF00} colocou uma música para todos ouvirem",pname);
SendClientMessageToAll(0x375FFFFF, string);
SendClientMessageToAll(0x375FFFFF, "{FFFFFF}se não estiver escutando aumente o volume da rádio nas configurações do seu jogo!");
SendClientMessage( playerid , COLOR_LIGHTBLUE, "[INFO]: Sua URL tentara ser tocada pelo jogo para todos ouvirem!");
SendClientMessageToAll(COLOR_LIGHTBLUE, "{FF0000}Caso não queira escutar a música que o adm pôs: {FFFFFF}/pararmusica");
for(new i=0; i
{
PlayAudioStreamForPlayer(i, str);
}
return 1;
}
if(strcmp(cmd,"/PararSom",true) == 0 && PlayerInfo[playerid][pAdmin] >= 5)
{
new str[128];
new pname[MAX_PLAYER_NAME];
GetPlayerName( playerid , pname, sizeof(pname));
format(string, sizeof(string), "{00FF00}Administrador{FFFFFF} %s {00FF00} parou a música para todos ",pname);
SendClientMessageToAll(0x375FFFFF, string);
str = strrest(cmdtext,idx);
for(new i=0; i
{
StopAudioStreamForPlayer(i);
}
return 1;
}
if(strcmp(cmd, "/pararmusica", true) == 0)
{
SendClientMessage( playerid , COLOR_LIGHTBLUE, "{FFFFFF}Você Parou a Musica que Administrador Colocou");
StopAudioStreamForPlayer(playerid);
return 1;
No final Do Gamemode:
stock strrest(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[128];
while ((index < length) && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
Me ajudem ae serio!!
if(strcmp(cmd, "/Tocar", true) == 0 && PlayerInfo[playerid][pAdmin] >= 5)
{
new str[128];
new pname[MAX_PLAYER_NAME];
str = strrest(cmdtext,idx);
if(!strlen(str)) return SendClientMessage(playerid, -1, "Use: /Tocar [URL]");
GetPlayerName( playerid , pname, sizeof(pname));
format(string, sizeof(string), "{00FF00}Administrador{FFFFFF} %s {00FF00} colocou uma música para todos ouvirem",pname);
SendClientMessageToAll(0x375FFFFF, string);
SendClientMessageToAll(0x375FFFFF, "{FFFFFF}se não estiver escutando aumente o volume da rádio nas configurações do seu jogo!");
SendClientMessage( playerid , COLOR_LIGHTBLUE, "[INFO]: Sua URL tentara ser tocada pelo jogo para todos ouvirem!");
SendClientMessageToAll(COLOR_LIGHTBLUE, "{FF0000}Caso não queira escutar a música que o adm pôs: {FFFFFF}/pararmusica");
for(new i=0; i
{
PlayAudioStreamForPlayer(i, str);
}
return 1;
}
if(strcmp(cmd,"/PararSom",true) == 0 && PlayerInfo[playerid][pAdmin] >= 5)
{
new str[128];
new pname[MAX_PLAYER_NAME];
GetPlayerName( playerid , pname, sizeof(pname));
format(string, sizeof(string), "{00FF00}Administrador{FFFFFF} %s {00FF00} parou a música para todos ",pname);
SendClientMessageToAll(0x375FFFFF, string);
str = strrest(cmdtext,idx);
for(new i=0; i
{
StopAudioStreamForPlayer(i);
}
return 1;
}
if(strcmp(cmd, "/pararmusica", true) == 0)
{
SendClientMessage( playerid , COLOR_LIGHTBLUE, "{FFFFFF}Você Parou a Musica que Administrador Colocou");
StopAudioStreamForPlayer(playerid);
return 1;
No final Do Gamemode:
stock strrest(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[128];
while ((index < length) && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
Me ajudem ae serio!!