SA-MP Forums Archive
textdraw string in clientremotefunction - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: textdraw string in clientremotefunction (/showthread.php?tid=168579)



textdraw string in clientremotefunction - LifeStyle - 16.08.2010

Fixed! Ty anyway


Re: textdraw string in clientremotefunction - LifeStyle - 17.08.2010

bump :S

8 characs..


Re: textdraw string in clientremotefunction - [XST]O_x - 17.08.2010

pawn Код:
forward AQinfoBox(playerid,text[]);
public AQinfoBox(playerid,text[])
{
    TextDrawShowForPlayer(playerid,JoinInfo);
    TextDrawSetString(JoinInfo, text);
    return 1;
}

public OnPlayerConnect(playerid)
{

    format(str, sizeof(str), "Ty for joining here! %s.",gPlayerName);
    CallRemoteFunction("AQinfoBox", "is",playerid,str);
    return 1;
}



Re: textdraw string in clientremotefunction - LifeStyle - 17.08.2010

I just fixed it and was about to post this but thanks anyway :P