Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Rulescmd By : Theseman.
- #include <a_samp>
- #if defined FILTERSCRIPT
- #define COLOR_GREEN 0x15FF00AA
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" Blank Filterscript by your name here");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- #else
- main()
- {
- print("\n----------------------------------");
- print(" Rules Command By : TheseMan.");
- print("----------------------------------\n");
- }
- #endif
- public OnGameModeInit()
- {
- return 1;
- }
- public OnGameModeExit()
- {
- return 1;
- }
- public OnPlayerRequestClass(playerid, classid)
- {
- SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
- SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
- SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
- return 1;
- }
- public OnPlayerConnect(playerid)
- {
- new string [944];
- new giveid;
- strcat(string, "{15FF00}1.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}2.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}3.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}4. {FFFFFF}Your Text\n");
- strcat(string, "{15FF00}5. {FFFFFF}Your Text\n");
- strcat(string, "{15FF00}6.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}7.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}8.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}9.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}10.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}11.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}12.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}13.{FFFFFF}Your Text\n\n");
- strcat(string, "\n\n");
- ShowPlayerDialog(giveid, 44, DIALOG_STYLE_MSGBOX, "Server Rules", string, "OK", "");
- return 1;
- }
- public OnPlayerDisconnect(playerid, reason)
- {
- return 1;
- }
- public OnPlayerSpawn(playerid)
- {
- return 1;
- }
- public OnPlayerDeath(playerid, killerid, reason)
- {
- return 1;
- }
- public OnVehicleSpawn(vehicleid)
- {
- return 1;
- }
- public OnVehicleDeath(vehicleid, killerid)
- {
- return 1;
- }
- public OnPlayerText(playerid, text[])
- {
- return 1;
- }
- public OnPlayerCommandText(playerid, cmdtext[])
- {
- if (strcmp("/rules", cmdtext, true, 10) == 0)
- {
- new string [944];
- new giveid;
- strcat(string, "{15FF00}1.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}2.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}3.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}4. {FFFFFF}Your Text\n");
- strcat(string, "{15FF00}5. {FFFFFF}Your Text\n");
- strcat(string, "{15FF00}6.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}7.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}8.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}9.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}10.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}11.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}12.{FFFFFF}Your Text\n");
- strcat(string, "{15FF00}13.{FFFFFF}Your Text\n\n");
- strcat(string, "\n\n");
- ShowPlayerDialog(giveid, 44, DIALOG_STYLE_MSGBOX, "Server Rules", string, "OK", "");
- return 1;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement