29.09.2018, 21:53
Now after doing Undef1ned's code, this is what happens when i do lobby:
https://imgur.com/a/Z6Y9vbl
Code:
https://imgur.com/a/Z6Y9vbl
Code:
PHP код:
CMD:lobby(playerid, params[])
{
if(InDM[playerid])
{
SpawnUser(playerid);
SendClientMessage(playerid, COLOR_LIGHTBLUE, "You have returned to the lobby.");
InDM[playerid] = false;
CountInDM[0] -= 1;
CountInDM[1] -= 1;
}
else
{
SendClientMessage(playerid, COLOR_LIGHTBLUE, "You are not inside any DM area.");
}
return 1;
}