SA-MP Forums Archive
Help [reps] - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help [reps] (/showthread.php?tid=526591)



Help [reps] - SPA - 18.07.2014

Hello, How to make the menu in mselection hide when press ESC? because its keep bugging..


Re: Help [reps] - BroZeus - 18.07.2014

pawn Код:
public OnPlayerClickPlayerTextDraw(playerid, PlayerText:playertextid)
{
    if( _:playertextid == INVALID_TEXT_DRAW )//ESC pressed
    {
    //hide the text draw
    }
return 1;
}



Re : Help [reps] - ManuelNeuer - 18.07.2014

pawn Код:
public OnPlayerClickPlayerTextDraw(playerid, PlayerText:playertextid)
{
    if(playertextid == gPlayerTextDraw[playerid])
    {
         SendClientMessage(playerid, 0xFFFFFFAA, "You clicked on a textdraw.");
         CancelSelectTextDraw(playerid);
    }
    return 1;
}
Use the wiki.


Re: Re : Help [reps] - BroZeus - 18.07.2014

Quote:
Originally Posted by ManuelNeuer
Посмотреть сообщение
pawn Код:
public OnPlayerClickPlayerTextDraw(playerid, PlayerText:playertextid)
{
    if(playertextid == gPlayerTextDraw[playerid])
    {
         SendClientMessage(playerid, 0xFFFFFFAA, "You clicked on a textdraw.");
         CancelSelectTextDraw(playerid);
    }
    return 1;
}
Use the wiki.
he knows that much
READ WHAT HE WRITEd ...


Re: Re : Help [reps] - Clad - 18.07.2014

Quote:
Originally Posted by BroZeus
Посмотреть сообщение
he knows that much
READ WHAT HE WRITEd ...
In fact, The guy doesn't know even how to search, Because if did search he wouldn't need help.


Re: Help [reps] - SPA - 18.07.2014

I'v searched, at last , to fix this problem you will need to update your MSelection.inc !