11.03.2015, 14:33
In the leave command you wrote this:
But that is wrong!
Write it like this:
and to your question, write this at the top-line:
Greekz
Код:
if (InDM[playerid] == 1) return SendClientMessage(playerid, -1, "{FFFFFF}You are not in a DM");
Write it like this:
Код:
if (!InDM[playerid]) return SendClientMessage(playerid, -1, "{FFFFFF}You are not in a DM");
Код:
if(InDM[playerid]) return SendClientMessage(playerid, -1, "you must leave dm before using this command");