Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Coded by: Willian Luigi
- //Exemplo - ShowDraws(playerid, text1, text2, text3);
- //Da mesma forma com o hide.
- stock ShowDraws(playerid, Text:...)
- {
- new sValue = numargs();
- while (sValue--)
- {
- TextDrawShowForPlayer(playerid, Text:getarg(sValue));
- }
- return 1;
- }
- stock HideDraws(playerid, Text:...)
- {
- new sValue = numargs();
- while (sValue--)
- {
- TextDrawHideForPlayer(playerid, Text:getarg(sValue));
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment