Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.90 KB | None | 0 0
  1. local num = 0
  2. function DonatorStoreMsg()
  3.     if num == 0 then
  4.         ULib.tsay( _, "➤ Buying a rank supports the server and unlocks tons of amazing perks such as…")
  5.         ULib.tsay( _, "   <c=67,67,67>• </c><c=85,255,255>Unlocks 50+ donator exclusive items in the shop!</c>")
  6.         ULib.tsay( _, "   <c=67,67,67>• </c><c=85,255,255>Access to Buildmode</c>")
  7.         ULib.tsay( _, "   <c=67,67,67>• </c><c=85,255,255>Access to exclusive commands</c>")
  8.         ULib.tsay( _, "➤ Type <c=255,0,0>!donate</c> to browse ranks")
  9.     else if num == 1 then
  10.         ULib.tsay( _, "➤ Buying a rank supports the server and unlocks tons of amazing perks such as…")
  11.         ULib.tsay( _, "   <c=67,67,67>• </c><c=85,255,255>Increased point multiplier!</c>")
  12.         ULib.tsay( _, "   <c=67,67,67>• </c><c=85,255,255>Unlocks to Donator Jetpack</c>")
  13.         ULib.tsay( _, "   <c=67,67,67>• </c><c=85,255,255>Unlocks Knife Crates</c>")
  14.         ULib.tsay( _, "➤ Type <c=255,0,0>!donate</c> to browse ranks")
  15.     else if num == 2 then
  16.         ULib.tsay( _, "<c=0,212,255>[★] </c> <c=85,255,255>Contact staff by typing in </c><c=0,170,170>@</c> <c=85,255,255>with your message.</c>")
  17.     else if num == 3 then
  18.         ULib.tsay( _, "<c=0,212,255>[★] </c> <c=85,255,255>Make sure to </c><c=0,170,170>favorite</c> <c=85,255,255>this server! (74.91.123.153)</c>")
  19.     else if num == 4 then
  20.         ULib.tsay( _, "<c=0,212,255>[★] </c> <c=85,255,255>Open the </c><c=0,170,170>!shop</c> <c=85,255,255> to browse skins, crates and more!</c>")
  21.     else if num == 5 then
  22.         ULib.tsay( _, "<c=0,212,255>[★] </c><c=85,255,255>Want to create or join a !party? Use </c><c=0,170,170>F4</c>")
  23.     end
  24.     num = num+1
  25.     if num == 6 then
  26.         num = 0;
  27.     end
  28. end
  29.  
  30. local function Timer()
  31.     timer.Create( "timer delay", 5, 0, DonatorStoreMsg)
  32. end
  33.  
  34. hook.Add( "Initialize", "Commence Timers", Timer )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement