How to show Textdraw1 up/down/Left/right of the Textdraw2?
#1

For example, if Textdraw1 is active, show Textdraw2 up/down/Left/right of the Textdraw1.

its possible?

if there... They me examples?
Reply
#2

What so like having a textdraw in the middle and then having textdraw flick around that one?
Reply
#3

їThis?

PHP код:
new Slot_td[3];
ShowTextDraw()
{
    if(!
Slot_td[0]) //If slot "0" is not occupied
    
{
        
Slot_td[0] = true;
        
TextDrawShowForAll(Textdraw);
        
SetTimerEx("HideTextDraw"5000false"d"0);
    }
    else if(!
Slot_td[1]) //If slot "0" is occupied and slot "1" is free.
    
{
        
Slot_td[1] = true;
        
TextDrawShowForAll(Textdraw1);
        
SetTimerEx("HideTextDraw"5000false"d"1);
    }
    else if(!
Slot_td[2]) //If slots "0" and "1" are occupied.
    
{
        
Slot_td[2] = true;
        
TextDrawShowForAll(Textdraw2);
        
SetTimerEx("HideTextDraw"5000false"d"2);
    }
    return 
1;

PHP код:
forward HideTextDraw(d);
public 
HideTextDraw(d)
{
    
Slot_td[d] = false;
    switch(
d)
    {
        case 
0TextDrawHideForAll(Textdraw);
        case 
1TextDrawHideForAll(Textdraw1);
        case 
2TextDrawHideForAll(Textdraw2);
    }
    return 
1;

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)