CancelSelectTextDraw

From SA-MP Wiki

Jump to: navigation, search


CancelSelectTextDraw was added in SA-MP 0.3e This function was added in SA-MP 0.3e and will not work in earlier versions!


Description:

Cancel textdraw selection with the mouse


Parameters:
(playerid)
playeridThe ID of the player that should be the textdraw selection disabled


Return Values:

This function does not return any specific values.


Image:32px-Circle-style-warning.png

Important
Note

*This function calls OnPlayerClickTextDraw with INVALID_TEXT_DRAW (65535). Using this function inside OnPlayerClickTextDraw without catching this case will cause clients to go into an infinite loop.


Example Usage:

public OnPlayerCommandText(playerid, cmdtext[])
{
    if(!strcmp(cmdtext, "/cancelselect", true))
    {
        CancelSelectTextDraw(playerid);
        SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: TextDraw selection disabled!");
        return 1;
    }
    return 0;
}

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

  • SelectTextDraw: Enables the mouse, so the player can select a textdraw


Related Callbacks

The following callbacks might be useful, as they're related to this function in one way or another.

Personal tools
Navigation
Toolbox
In other languages