09.11.2012, 20:17
tipo esse mini code criado aki..
quando o player digita /afk ele jah fica afk mais ele nгo digita o motivo..
eu queria que tipo quando ele digitasse /afk ele nгo poderia fica afk antes de coloca o motivo, dps que ele coloca o motivo ai sim ele fica afk..
quando o player digita /afk ele jah fica afk mais ele nгo digita o motivo..
eu queria que tipo quando ele digitasse /afk ele nгo poderia fica afk antes de coloca o motivo, dps que ele coloca o motivo ai sim ele fica afk..
pawn Код:
if(strcmp(cmdtext, "/afk", true) == 0)
{
ShowPlayerDialog(playerid,DIALOG_AFK,DIALOG_STYLE_INPUT,".. [Digite o Motivo] ..", "Digite o Motivo de querer ficar AFK","OK","");
if(AFK[playerid]==0)
{
AFK[playerid]=1;
DOF2_SetString(temp,"Status>","AFK");
SetPlayerVirtualWorld(playerid, 1);
SetCameraBehindPlayer(playerid);
TogglePlayerControllable(playerid,0);
TextDrawShowForPlayer(playerid,AfkText);
TextDrawShowForPlayer(playerid,AfkBackText);
GetPlayerName(playerid, playername, MAX_PLAYER_NAME);
}else{
SendClientMessage(playerid,Vermelho,"(ERRO) Vocк jб estб no modo Online para poder utilizar esse comando!");
return 1;
}
return 1;
}