27.01.2013, 13:39
This My First Filterscript
You Need include Color, Goto Sub Forum Include
Sorry If Bad XD
PHP код:
#include <a_samp>
#include <color>
#define dialogconnect 1001
public OnPlayerConnect(playerid)
{
ShowPlayerDialog(playerid, dialogconnect, DIALOG_STYLE_MSGBOX, "Rules", "No Cheat\nNo Spamming\nNo Insult\nNo Sara", "Agree", "No");
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == dialogconnect)
{
if(response)
{
SendClientMessage(playerid, COLOR_GREEN, "Thank you for agreeing to the server rules!");
}
else
{
SendClientMessage(playerid, COLOR_RED, "You MUST agree to the server rules to play here.");
Kick(playerid);
}
return 1;
}
return 1;
}
Sorry If Bad XD