if (!strcmp(cmdtext, "/fecharevento", true)) {
if (event(playerid))
Inevent = 0;
SpawnPlayer(playerid);
}
#define FILTERSCRIPT
#include < a_samp >
#if defined FILTERSCRIPT
new event;
new Inevent;
public OnFilterScriptInit() {
print("\n--------------------------------------");
print("Filter Script Event By Gabrielloko157 =D");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit() {
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[]) {
if (!strcmp(cmdtext, "/criarevento", true)) {
for (new i = 0; i < MAX_PLAYERS; i++) {
ShowPlayerDialog(i, 1923, DIALOG_STYLE_MSGBOX, "Evento Paintball", "O Admin %s estб chamando todos Para um\n Evento de Paintball\n Vocк Deseja ir ?", "Sim", "Nгo");
}
if (!strcmp(cmdtext, "/fecharevento", true)) {
if (event)
SpawnPlayer(playerid);
Inevent = 0;
}
}
return 0;
}
public OnPlayerDeath(playerid, killerid, reason) {
{
#endif
}
return 1;
}
public OnPlayerSpawn(playerid) {
if (Inevent == 1) {
SetPlayerPos(playerid, 0.0, 0.0, 3.0);// pos do evento aqui
}
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) {
if (dialogid == 1923) {
if (response) {
SetPlayerPos(playerid, 0.0, 0.0, 3.0);// pos do evento aqui
Inevent = 1;
} else {}
}
return 0; // You MUST return 0 here! Just like OnPlayerCommandText.
}
new bool:TaNoEvento[MAX_PLAYERS];
CMD:fecharevento(playerid)
{
for(new i; i < MAX_PLAYERS) i++;
{
if(TaNoEvento[i] == true)
{
SpawnPlayer(i);
}
}
return 1;
}
PHP код:
|
й eu esqueci de usar o getplayername ^^ mais eu tirei coloquei pra fazer o rascunho do fs mano ainda vai ter muita coisa
@edit huum, eu pensei em usar a propria variavel if (Inevent == 1) mais eu tentei e deu unknow comand |