Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // This is a comment
- // uncomment the line below if you want to write a filterscript
- //#define FILTERSCRIPT
- #include <a_samp>
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" [HB]Billaboi Teleports ~Loaded~");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- public OnPlayerCommandText(playerid, cmdtext[])
- {
- if (strcmp("/arch", cmdtext, true, 10) == 0)
- {
- SetPlayerPos(playerid, -2703.5210,218.5312,3.8405);
- SendClientMessage(playerid,-1,"You Teleported to arch");
- return 1;
- }
- if (strcmp("/lv", cmdtext, true, 10) == 0)
- {
- SetPlayerPos(playerid, 2497.6963,1533.7504,10.6752);
- SendClientMessage(playerid,-1,"You Teleported to lv");
- return 1;
- }
- if (strcmp("/sf", cmdtext, true, 10) == 0)
- {
- SetPlayerPos(playerid, -2027.2809,138.5987,28.8359);
- SendClientMessage(playerid,-1,"You Teleported to sf");
- return 1;
- }
- if (strcmp("/ls", cmdtext, true, 10) == 0)
- {
- SetPlayerPos(playerid, 2495.2002, -1666.3481, 13.3438);
- SendClientMessage(playerid,-1,"You Teleported to ls");
- return 1;
- }
- if (strcmp("/trans", cmdtext, true, 10) == 0)
- {
- SetPlayerPos(playerid, -1935.6311, 231.5551, 34.1563);
- SendClientMessage(playerid,-1,"You Teleported to trans");
- return 1;
- }
- if (strcmp("/bigear", cmdtext, true, 10) == 0)
- {
- SetPlayerPos(playerid, -368.1264, 1581.7207, 76.1016);
- SendClientMessage(playerid,-1,"You Teleported to Bigear");
- return 1;
- }
- if (strcmp("/lsair", cmdtext, true, 10) == 0)
- {
- SetPlayerPos(playerid, 1961.6473, -2182.5845, 13.5469);
- SendClientMessage(playerid,-1,"You Teleported to ls airport");
- return 1;
- }
- if (strcmp("/lvair", cmdtext, true, 10) == 0)
- {
- SetPlayerPos(playerid, 1706.5125, 1607.6833, 10.0156);
- SendClientMessage(playerid,-1,"You Teleported to lv airport");
- return 1;
- }
- if (strcmp("/sfair", cmdtext, true, 10) == 0)
- {
- SetPlayerPos(playerid, -1543.4087, -428.6080, 5.8516);
- SendClientMessage(playerid,-1,"You Teleported to sf airport");
- return 1;
- }
- if (strcmp("/loco", cmdtext, true, 10) == 0)
- {
- SetPlayerPos(playerid, 2644.3401,-2030.5510,13.5469);
- SendClientMessage(playerid,-1,"You Teleported to loco");
- return 1;
- }
- if (strcmp("/teles", cmdtext, true, 10) == 0)
- {
- SendClientMessage(playerid,-1,"---------------/Teleports\------------- ");
- SendClientMessage(playerid,-1,"/sf, /lv, /ls, /lvair, /sfair, /lsair");
- SendClientMessage(playerid,-1,"/arch, /loco, /trans (created by [HB]Shahil)");
- return 1;
- }
- return 0;
- #endif
Advertisement
Add Comment
Please, Sign In to add comment