Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // teleport v 2.3
- #define FILTERSCRIPT
- #include <a_samp>
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" TELEPORT Version 2.3 - Made by JonnyBoy");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- #else
- main()
- {
- print("\n----------------------------------");
- print(" TELEPORT V 2.3 - By JonnyBoy");
- print("----------------------------------\n");
- }
- #endif
- public OnPlayerCommandText(playerid,cmdtext[])
- {
- if(!strcmp(cmdtext,"/ls",true))
- {
- SetPlayerPos(playerid, 1546.908, -2313.5, 15);
- SetPlayerFacingAngle(playerid, 0);
- return 1;
- }
- if(!strcmp(cmdtext,"/lv",true))
- {
- SetPlayerPos(playerid, 1677.544, 1426.837, 15);
- SetPlayerFacingAngle(playerid, 0);
- return 1;
- }
- if(!strcmp(cmdtext,"/sf",true))
- {
- SetPlayerPos(playerid, -1448.325, -325.1149, 15);
- SetPlayerFacingAngle(playerid, 0);
- return 1;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment