Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3.7-R2, ©2005-2015 SA-MP Team [23:39:56] [23:39:56] Server Plugins [23:39:56] -------------- [23:39:56] Loading plugin: sscanf [23:39:56] [23:39:56] =============================== [23:39:56] sscanf plugin loaded. [23:39:56] Version: 2.8.1 [23:39:56] © 2012 Alex "******" Cole [23:39:56] =============================== [23:39:56] Loaded. [23:39:56] Loading plugin: iTD [23:39:56] * iTD Plugin loaded. (Support for textdraw editor mouse/keyboard) [23:39:56] Loaded. [23:39:56] Loaded 2 plugins. [23:39:56] [23:39:56] Filterscripts [23:39:56] --------------- [23:39:56] Loading filterscript 'iTD.amx'... [23:39:56] iPLEOMAX's TextDraw Editor loaded successfully! Version: 1.16 Stable (13/10/2012) [23:39:56] Loaded 1 filterscripts. [23:39:56] --------------------------------------- [23:39:56] Running Grand Larceny - by the SA-MP team [23:39:56] --------------------------------------- [23:39:56] Number of vehicle models: 0 [23:40:25] [connection] 25.89.143.38:61929 requests connection cookie. [23:40:26] [connection] incoming connection: 25.89.143.38:61929 id: 0 [23:40:26] [join] 12345 has joined the server (0:25.89.143.38) [23:42:09] [part] 12345 has left the server (0:1)
D:\GTA SA-MP\IpleomaxStudio\filterscripts\iTD.pwn(604) : warning 235: public function lacks forward declaration (symbol "OnPlayerClickTextDraw") D:\GTA SA-MP\IpleomaxStudio\filterscripts\iTD.pwn(1859) : warning 215: expression has no effect D:\GTA SA-MP\IpleomaxStudio\filterscripts\iTD.pwn(1923) : warning 215: expression has no effect D:\GTA SA-MP\IpleomaxStudio\filterscripts\iTD.pwn(1929) : warning 215: expression has no effect D:\GTA SA-MP\IpleomaxStudio\filterscripts\iTD.pwn(1944) : warning 215: expression has no effect D:\GTA SA-MP\IpleomaxStudio\filterscripts\iTD.pwn(1951) : warning 215: expression has no effect D:\GTA SA-MP\IpleomaxStudio\filterscripts\iTD.pwn(1954) : warning 215: expression has no effect D:\GTA SA-MP\IpleomaxStudio\filterscripts\iTD.pwn(1960) : warning 215: expression has no effect D:\GTA SA-MP\IpleomaxStudio\filterscripts\iTD.pwn(1967) : warning 215: expression has no effect D:\GTA SA-MP\IpleomaxStudio\filterscripts\iTD.pwn(2117) : warning 217: loose indentation D:\GTA SA-MP\IpleomaxStudio\filterscripts\iTD.pwn(2117) : warning 215: expression has no effect Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 11 Warnings.
public function lacks forward declaration (symbol "OnPlayerClickTextDraw") |
i can't find my cursour on Desktop |
• The compiler said all. You have a public function but not forwarded, could you show us your "OnPlayerClickTextDraw" function?
• In order to check the problem source's, try using the FS in other computer. |
public OnPlayerClickTextDraw(playerid, Text:clickedid) { //format(String_Message, sizeof String_Message, "Clickedid: %i", _:clickedid); //Send(playerid, -1, String_Message); if(playerid != ProjectEditor) return false; if(clickedid == Text:INVALID_TEXT_DRAW) { if(DialogShown) { Send(ProjectEditor, -1, #ITD_W"Please close this dialog first!"); return SelectTextDraw(playerid, -1); } if(MenuHidden) return ShowEditor(); if(MenuShown) return HideEditor(); return true; } if(clickedid == TD_Menu[1]) iShowPlayerDialog(playerid, DIALOG_NEW, DIALOG_STYLE_INPUT, "New Project", "\nPlease enter the name of your new project:\n", "OK", "Cancel"); if(clickedid == TD_Menu[2]) return ShowProjectList(); if(clickedid == TD_Menu[3]) return CloseProject(true); if(clickedid == TD_Menu[4]) return ExportProject(); if(clickedid == TD_Menu[8]) return ShowTextDrawList(); if(clickedid == TD_Menu[9]) return ShowPositionDialog(); if(clickedid == TD_Menu[10]) return ShowSizeDialog(true); if(clickedid == TD_Menu[11]) return ShowTextDialog(); if(clickedid == TD_Menu[16]) return ShowLetterDialog(); if(clickedid == TD_Menu[14]) return TextDrawEdit(EDITMODE_COLOR); if(clickedid == TD_Menu[15]) return TextDrawEdit(EDITMODE_BGCOLOR); if(clickedid == TD_Menu[32]) return TextDrawEdit(EDITMODE_BOXCOLOR); if(clickedid == TD_Menu[17]) return TextDrawEdit(EDITMODE_OUTLINE); if(clickedid == TD_Menu[18]) return TextDrawEdit(EDITMODE_SHADOW); if(clickedid == TD_Menu[31] || clickedid == TD_Menu[30]) return TextDrawEdit(EDITMODE_PROPORTION); if(clickedid == TD_Menu[29] || clickedid == TD_Menu[28]) return TextDrawEdit(EDITMODE_SELECTABLE); if(clickedid == TD_Menu[27] || clickedid == TD_Menu[26] || clickedid == TD_Menu[25] || clickedid == TD_Menu[24] || clickedid == TD_Menu[12]) return TextDrawEdit(EDITMODE_FONT); if(clickedid == TD_Menu[23] || clickedid == TD_Menu[22] || clickedid == TD_Menu[21]) return TextDrawEdit(EDITMODE_ALIGNMENT); if(clickedid == TD_Menu[20] || clickedid == TD_Menu[19]) return TextDrawEdit(EDITMODE_BOX); if(clickedid == TD_Menu[5] || clickedid == TD_Menu[33]) return TextDrawEdit(EDITMODE_TYPE); return false; }