Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //all by XtremeR
- #include <a_samp>
- new b1;
- new b2;
- new b3;
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print("Balloon's FS By XtremeR");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- #else
- #endif
- public OnGameModeInit()
- {
- b1 = CreateObject(19332, 364.71, 2537.19, 15.68, 0.00, 0.00, 0.00);
- b2 = CreateObject(19333, 154.77, -1858.23, 2.78, 0.00, 0.00, 0.00);
- b3 = CreateObject(19334, -1748.00, -154.60, 2.60, 0.00, 0.00, 0.00);
- }
- public OnPlayerText(playerid, text[])
- {
- return 1;
- }
- public OnPlayerCommandText(playerid, cmdtext[])
- {
- if (strcmp(cmdtext, "/rballoon", true) == 0)
- {
- SetPlayerPos(playerid,382.0658, 2537.5269, 15.6774);
- SendClientMessage(playerid, 0xDEEE20FF, "Welcome to Red Balloon");
- return 1;
- }
- if (strcmp(cmdtext, "/bballoon", true) == 0)
- {
- SetPlayerPos(playerid,153.8562, -1879.2620, 2.7823);
- SendClientMessage(playerid, 0xDEEE20FF, "Welcome to Blue Balloon");
- return 1;
- }
- if (strcmp(cmdtext, "/gballoon", true) == 0)
- {
- SetPlayerPos(playerid,-1738.4253, -137.0162, 2.6011);
- SendClientMessage(playerid, 0xDEEE20FF, "Welcome to Grey Balloon");
- return 1;
- }
- if (strcmp(cmdtext, "/rup", true) == 0)
- {
- MoveObject(b1, 237.11, 2547.02, 354.68, 3);
- SendClientMessage(playerid, 0xDEEE20FF, "Going!");
- return 1;
- }
- if (strcmp(cmdtext, "/bup", true) == 0)
- {
- MoveObject(b2, 455.3196, -1870.2194, 824.6305, 3);
- SendClientMessage(playerid, 0xDEEE20FF, "Going!");
- return 1;
- }
- if (strcmp(cmdtext, "/gup", true) == 0)
- {
- MoveObject(b3,-1752.5271, -8.4947, 282.0090, 3);
- SendClientMessage(playerid, 0xDEEE20FF, "Going!");
- return 1;
- }
- if (strcmp(cmdtext, "/rdown", true) == 0)
- {
- MoveObject(b1, 365.56, 2537.17, 15.68, 5);
- SendClientMessage(playerid, 0xDEEE20FF, "Going Down!");
- return 1;
- }
- if (strcmp(cmdtext, "/bdown", true) == 0)
- {
- MoveObject(b2, 154.7741, -1858.2334, 2.7823 , 5);
- SendClientMessage(playerid, 0xDEEE20FF, "Going Down!");
- return 1;
- }
- if (strcmp(cmdtext, "/gdown", true) == 0)
- {
- MoveObject(b3, -1748.0038, -154.6030, 2.6011, 5);
- SendClientMessage(playerid, 0xDEEE20FF, "Going Down!");
- return 1;
- }
- if (strcmp(cmdtext, "/ballooncredits", true) == 0)
- {
- SendClientMessage(playerid, 0xDEEE20FF, "All Balloons by XtremeR ");
- return 1;
- }
- if (strcmp(cmdtext, "/balloonhelp", true) == 0)
- {
- SendClientMessage(playerid, 0xDEEE20FF, "[Xtreme's Balloon FS HELP]");
- SendClientMessage(playerid, 0xDEEE20FF, "/rballoon red balloon");
- SendClientMessage(playerid, 0xDEEE20FF, "/bballon blue balloon");
- SendClientMessage(playerid, 0xDEEE20FF, "/gballon grey balloon");
- SendClientMessage(playerid, 0xDEEE20FF, "/rup - Red balloon Up, /rdown - Red Balloon Down");
- SendClientMessage(playerid, 0xDEEE20FF, "/bup - Blue balloon Up, /bdown - Blue Balloon Down");
- SendClientMessage(playerid, 0xDEEE20FF, "/gup - Grey balloon Up, /gdown - Grey Balloon Down");
- SendClientMessage(playerid, 0xDEEE20FF, "/ballooncredits - For Credits");
- SendClientMessage(playerid, 0xDEEE20FF, "Filterscript made by: XtremeR");
- return 1;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment