Advertisement
Zmajk0

Untitled

May 15th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. KreirajAltChat()
  2. {
  3. new Float: AltChat_posY=300;
  4. for(new i=0; i<MAX_LINES; i++)
  5. {
  6. if(!strlen(ChatText[i])) ChatText[i][0]=' ';
  7. ChatLine[i]=TextDrawCreate(150,AltChat_posY,ChatText[i]);
  8. TextDrawLetterSize(ChatLine[i],0.219999,0.713333);
  9. TextDrawAlignment(ChatLine[i],1);
  10. TextDrawColor(ChatLine[i],-1);
  11. TextDrawSetShadow(ChatLine[i],0);
  12. TextDrawSetOutline(ChatLine[i],1);
  13. TextDrawBackgroundColor(ChatLine[i],255);
  14. TextDrawFont(ChatLine[i],1);
  15. TextDrawSetProportional(ChatLine[i],1);
  16. TextDrawSetShadow(ChatLine[i],0);
  17. AltChat_posY+=(278.499969 - 272.066528);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement