F5 and clickable TDs
#9

So, I don't see any person who tried to check this bug...
Ok, I made a video. Maybe now you will believe...
[ame]http://www.youtube.com/watch?v=cc_YLf8pFQc[/ame]
Script code:
PHP код:
#define FILTERSCRIPT
#include <a_samp>
new Text:Textdraw0;
public 
OnFilterScriptInit()
{
    
Textdraw0 TextDrawCreate(313.000000166.250015"Clickable TD");
    
TextDrawLetterSize(Textdraw01.0315003.618333);
    
TextDrawTextSize(Textdraw030.500000298.083007);
    
TextDrawAlignment(Textdraw02);
    
TextDrawColor(Textdraw0, -1);
    
TextDrawUseBox(Textdraw0true);
    
TextDrawBoxColor(Textdraw00);
    
TextDrawSetShadow(Textdraw00);
    
TextDrawSetOutline(Textdraw01);
    
TextDrawBackgroundColor(Textdraw051);
    
TextDrawFont(Textdraw02);
    
TextDrawSetProportional(Textdraw01);
    
TextDrawSetSelectable(Textdraw0true);
    return 
1;
}
public 
OnPlayerCommandText(playerid,cmdtext[])
{
    if(!
strcmp(cmdtext,"/choose",true))
    {
        
TextDrawShowForPlayer(playerid,Textdraw0);
        
SelectTextDraw(playerid,0x73B1EDFF);
        return 
1;
    }
    return 
0;
}
public 
OnPlayerClickTextDraw(playeridText:clickedid)
{
    if(
clickedid == Textdraw0)
    {
        
TextDrawHideForPlayer(playerid,Textdraw0);
        
SendClientMessage(playerid,-1,"Textdraw0 was selected and hidden.");
        return 
1;
    }
    return 
1;

And how you can see, client sends data about TD clicking when it's hidden...
Reply


Messages In This Thread
F5 and clickable TDs - by SDraw - 09.03.2013, 15:44
Re: F5 and clickable TDs - by MP2 - 09.03.2013, 18:10
Re: F5 and clickable TDs - by SDraw - 09.03.2013, 19:26
Re: F5 and clickable TDs - by Vince - 09.03.2013, 20:20
Re: F5 and clickable TDs - by Pottus - 09.03.2013, 23:15
Re: F5 and clickable TDs - by SDraw - 10.03.2013, 07:25
Re: F5 and clickable TDs - by Tamer - 10.03.2013, 14:04
Re: F5 and clickable TDs - by SDraw - 10.03.2013, 16:02
Re: F5 and clickable TDs - by SDraw - 10.03.2013, 16:33
Re: F5 and clickable TDs - by SDraw - 26.03.2013, 18:37
Re: F5 and clickable TDs - by Basssiiie - 26.03.2013, 20:12
Re: F5 and clickable TDs - by dannyk0ed - 27.03.2013, 09:50
Re: F5 and clickable TDs - by SDraw - 27.03.2013, 10:53
Re: F5 and clickable TDs - by DiGiTaL_AnGeL - 27.03.2013, 12:38
Re: F5 and clickable TDs - by SDraw - 27.03.2013, 12:53
Re: F5 and clickable TDs - by dannyk0ed - 27.03.2013, 13:28
Re: F5 and clickable TDs - by leong124 - 27.03.2013, 19:45
Re: F5 and clickable TDs - by Basssiiie - 28.03.2013, 16:59
Re: F5 and clickable TDs - by leong124 - 30.03.2013, 21:10

Forum Jump:


Users browsing this thread: 1 Guest(s)