Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. :?:/overlayoff::
  2. DestroyAllVisual() //Schalltet alle Overlays ab
  3. SetTimer, Alles, off
  4. SetTimer, hpoverlay, off
  5. return
  6.  
  7.  
  8.  
  9. :?:/overlay::
  10.  
  11. zone := Textcreate("Arial", 15, false, false) //Schrifftart
  12. Textsetpos(zone, 650, 430 )//Position
  13. TextSetColor(zone, 0xFFFFFFFF )//Farbe
  14. TextShow(zone )//die Var, kann alles mögliche andere sein
  15.  
  16. SetTimer, Alles, ON //Die Zeit der Abfragen
  17.  
  18. return
  19.  
  20.  
  21. Alles:
  22. zone := GetZoneName(Zone)
  23. TextSetString(zone, Zone)
  24. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement