17.08.2010, 10:31
Im working on a teleport command and i really need help!
command so far
ERROR Problem
CREDITS
JonnyBoy - Idea, Commands
-Waiting help-
command so far
Код:
// teleport v 1.2 #define FILTERSCRIPT #include <a_samp> #if defined FILTERSCRIPT public OnFilterScriptInit() { print("\n--------------------------------------"); print(" TELEPORT Version 1.2 - Made by JonnyBoy"); print("--------------------------------------\n"); return 1; } public OnFilterScriptExit() { return 1; } #else main() { print("\n----------------------------------"); print(" TELEPORT V 1.2 - By JonnyBoy"); print("----------------------------------\n"); } #endif if(!strcmp(cmdtext,"/sf",true)) { SetPlayerPos(playerid, -1448,325, -325,1149, 15); SetPlayerAngle(playerid, 0); return 1; } if(!strcmp(cmdtext,"/lv",true)) { SetPlayerPos(playerid, 1677,544, 1426,837, 15); SetPlayerAngle(playerid, 0); return 1; } if(!strcmp(cmdtext,"/ls",true)) { SetPlayerPos(playerid, 1546,908, -2313,5, 15); SetPlayerAngle(playerid, 0); return 1; }
Код:
D:\Rockstar Games\GTA San Andreas MP Server\filterscripts\tele.pwn(32) : error 010: invalid function or declaration D:\Rockstar Games\GTA San Andreas MP Server\filterscripts\tele.pwn(35) : error 010: invalid function or declaration D:\Rockstar Games\GTA San Andreas MP Server\filterscripts\tele.pwn(37) : error 010: invalid function or declaration D:\Rockstar Games\GTA San Andreas MP Server\filterscripts\tele.pwn(40) : error 010: invalid function or declaration D:\Rockstar Games\GTA San Andreas MP Server\filterscripts\tele.pwn(42) : error 010: invalid function or declaration D:\Rockstar Games\GTA San Andreas MP Server\filterscripts\tele.pwn(45) : error 010: invalid function or declaration Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 6 Errors.
JonnyBoy - Idea, Commands
-Waiting help-