10.06.2015, 00:14
Use TDEditor to create a textdraws ( https://sampforum.blast.hk/showthread.php?tid=543002 ) then you need a callback named "OnPlayerClickTextDraw"
for example
for example
PHP код:
public OnPlayerClickTextDraw(playerid, Text:clickedid)
{
if(clickedid == TextDrawVariable) // here you put the variable of the textdraw
{
// here you put what you want to do when the player click on the textdraw.
return 1;
}
return 1;
}