10.08.2012, 13:36
Well guys, I scripted a Rules Dialog.
But OnDialogResponse doesnt work for me.
I wanted to make like:
If player response = SendClientMessage "Thanks for accepting the rules"
If player response == 0 SendClientMessgae "You declined the rules, kicked!"
Kick(playerid)
(This is just an example!)
Can someone make this possible for version 3.0e?
This is what I used.
But OnDialogResponse doesnt work for me.
I wanted to make like:
If player response = SendClientMessage "Thanks for accepting the rules"
If player response == 0 SendClientMessgae "You declined the rules, kicked!"
Kick(playerid)
(This is just an example!)
Can someone make this possible for version 3.0e?
Код:
public OnPlayerConnect(playerid)
{
ShowPlayerDialog(playerid, KickBox, DIALOG_STYLE_MSGBOX, "{000080}Server Rules", "{FF0000}Rule 1: No Hacking\n\n{FF0000}Rule 2: No Imature Behavioure\n\n{FF0000}Rule 3: No Racism\n\n{FF0000}Rule 4: Respect all players\n\n{FF0000}Rule 5: Do not be abusive to Admins or KICK/BAN\n\n{FF0000}Rule 6: Have Fun!\n\n{D9FF00}Decline our rules you will be KICKED!", "Accept", "Decline");
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == KickBox)
{
if(response)
{
SendClientMessage(playerid,COLOR_YELLOW, "You Accepted our rules Have fun!");
}
else
{
SendClientMessage(playerid,COLOR_RED, "You Declined and have been kicked Goodbye!");
Kick(playerid);
}
return 1;
}
return 0;
}

