switch(dialogid){
case 11:{
if(response){
if(!strlen(inputtext)){
SendClientMessage(playerid,-1,"Nenhum url foi digitado na input!");
return 0;
}
new Float:Pos[3];
GetPlayerPos(playerid,Pos[0],Pos[1],Pos[2]);
for(new i = 0; i <MAX_PLAYERS; i++){
if(IsPlayerInRangeOfPoint(i,10.0,Pos[0],Pos[1],Pos[2])){
PlayAudioStreamForPlayer(i,inputtext);
// }*** Tive que tirar pois o Pawn estava parando de funcionar ***
// }a mesma coisa ...
}else{
// } a msm coisa ...
}
}
return 1;
}
// }*** Tive que tirar pois o Pawn estava parando de funcionar *** // }a mesma coisa ... }else{ // } a msm coisa ... |
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
switch(dialogid) {
case 11: {
if(response) {
if(!strlen(inputtext)) return SendClientMessage(playerid, -1, "Nenhum url foi digitado na input!");
new Float:Pos[3];
GetPlayerPos(playerid,Pos[0],Pos[1],Pos[2]);
for(new i = 0; i <MAX_PLAYERS; i++) {
if(IsPlayerInRangeOfPoint(i,10.0,Pos[0],Pos[1],Pos[2])) PlayAudioStreamForPlayer(i,inputtext);
}
}
}
}
return 1;
}