03.08.2010, 23:07
Delete all the TextDrawShowForPlayer lines in your animation commands. If you're too lazy to do that, then delete this but leave the variable.
pawn Код:
public OnFilterScriptInit()
{
Anim_Textdraw = TextDrawCreate(610.0, 400.0,"~r~~k~~PED_SPRINT~ ~w~to stop the animation");
TextDrawUseBox(Anim_Textdraw, 0);
TextDrawFont(Anim_Textdraw, 2);
TextDrawSetShadow(Anim_Textdraw,0);
TextDrawSetOutline(Anim_Textdraw,1);
TextDrawBackgroundColor(Anim_Textdraw,0x000000FF);
TextDrawColor(Anim_Textdraw,0xFFFFFFFF);
TextDrawAlignment(Anim_Textdraw,3);
return 1;
}