Dialog Kick
#1

Hi,so basicly i don't knwo right function or why thsi ain't wokring:
Код:
if(dialogid == 3)
    	{
        if(response)
        {
            SendClientMessage(playerid, 0x33AA33AA, "Thanks for Accepting");
        }
        else
        {
            SendClientMessage(playerid, 0xAA3333AA, "Need to accept the rules to play here");
			Kick(playerid);
			return 1;
When i click the 2nd one it doesn't kick me
Reply
#2

Is the dialog which is being displayed the correct dialogid (3)?
Reply
#3

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
Is the dialog which is being displayed the correct dialogid (3)?
Yes it is
Reply
#4

pawn Код:
if(dialogid == 3)
        {
        if(response)
        {
            SendClientMessage(playerid, 0x33AA33AA, "Thanks for Accepting");
        }
        if(!response)
        {
            SendClientMessage(playerid, 0xAA3333AA, "Need to accept the rules to play here");
            Kick(playerid);
        }
            return 1;
"
Try this
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)