11.04.2013, 12:08
Your not setting the random value when they register your only saving it to file.
Also.... don't do this
if (!response) return Kick(playerid);
if (response)
do this
if(!reponse) Kick(playerid);
else
{
}
no need for two ifs here.
Also.... don't do this
if (!response) return Kick(playerid);
if (response)
do this
if(!reponse) Kick(playerid);
else
{
}
no need for two ifs here.