Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #include <sscanf2>
- #include <YCMD>
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print("Teleport to coords by jeevanjyothish ");
- print("--------------------------------------\n");
- return 1;
- }
- #endif
- public OnFilterScriptExit()
- {
- return 1;
- }
- public OnFilterScriptInit()
- {
- new Float:x, Float:y, Float:z;
- if(sscanf(params, "fff", x, y, z)) return SendClientMessage(playerid, 0xFF0000FF, "/tp (X/Y/Z)");
- SetPlayerPos(playerid, x, y, z);
- return 1;
- }
- {
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement