whiplk

[CODE] - TextDraws

Jul 11th, 2013
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.47 KB | None | 0 0
  1. //Coded by: Willian Luigi
  2. //Exemplo - ShowDraws(playerid, text1, text2, text3);
  3. //Da mesma forma com o hide.
  4.  
  5. stock ShowDraws(playerid, Text:...)
  6. {
  7.     new sValue = numargs();
  8.     while (sValue--)
  9.     {
  10.         TextDrawShowForPlayer(playerid, Text:getarg(sValue));
  11.     }
  12.     return 1;
  13. }
  14.  
  15. stock HideDraws(playerid, Text:...)
  16. {
  17.     new sValue = numargs();
  18.     while (sValue--)
  19.     {
  20.         TextDrawHideForPlayer(playerid, Text:getarg(sValue));
  21.     }
  22.     return 1;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment