Ipleomax TextDraw Problem.
#1

Hi Guys. I have a stable version of Ipleomax TextDraw Editor, but i have a problem. Last week it work, but now, i can't find my cursour on Desktop. I have Windows 7 (32bits - 86). I already reinstall the GTA and SA:MP in other folder, but still don't work.
I think the plugin don't work. But, on server log it's loaded succesfully.

Sorry for the bad english.
Please guys, please, help me if you can.

Код HTML:
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)
Some Warnings when i compile it:
Код HTML:
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.
Reply
#2

Hope that you know u run ipleomax "Connect To Local Server" right.
Reply
#3

Yes. LocalHost.
Reply
#4

!Bump
Reply
#5

Quote:

public function lacks forward declaration (symbol "OnPlayerClickTextDraw")

• The compiler said all. You have a public function but not forwarded, could you show us your "OnPlayerClickTextDraw" function?

Quote:

i can't find my cursour on Desktop

• In order to check the problem source's, try using the FS in other computer.
Reply
#6

Quote:
Originally Posted by KillerDVX
Посмотреть сообщение
• 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.
The lines..

Код HTML:
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;
}
For now, i can't try in another computer.
Reply
#7

!Bump..
Someone ?
Reply
#8

!Bump
Reply
#9

try to update Visual C++ Redistributable for Visual Studio 2015
Reply
#10

Quote:
Originally Posted by ikey07
Посмотреть сообщение
try to update Visual C++ Redistributable for Visual Studio 2015
You are sure about that ? I have C++ 2007 i think, but that isn't help i think... You are sure that will help ?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)