Subdomain Posts
Lua | 1 hour ago
Lua | 10 hours ago
Lua | 19 hours ago
Lua | 22 hours ago
Lua | 23 hours ago
Lua | 23 hours ago
Lua | 1 day ago
Lua | 1 day ago
Lua | 1 day ago
Lua | 1 day ago
Recent Posts
Linden Scripting | 12 sec ago
None | 41 sec ago
Bash | 1 min ago
None | 1 min ago
C | 2 min ago
Bash | 2 min ago
None | 2 min ago
None | 2 min ago
None | 2 min ago
None | 3 min ago
Sitereport
Find cool info about any domain on the internet?
visit sitereport
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
Learn a little bit about the new Pastebin.com on our help page. hide message
By Anonymous on the 8th of Feb 2010 09:55:36 PM Download | Raw | Embed | Report
  1. local speed = 1 --Hvor ofte den skal bytte mellom navna i sekunder
  2.  
  3. local names = { -- Husk komma etter vært ord!
  4.         "G",
  5.         "Go",
  6.         "GoD",
  7.         "GoDN",
  8.         "GoDNe",
  9.         "GoDNeS",
  10.         "GoDNeSS",
  11. }
  12.  
  13. local name
  14. local counter = 0
  15. timer.Create("cycle names", speed, 0, function()
  16.         if counter >= #names then counter = 0 end
  17.         counter = counter + 1
  18.         name = names[counter]
  19. end)
  20.  
  21. hook.Add("Think", "aname", function()
  22.         RunConsoleCommand("setinfo", "name", name)
  23. end)
Submit a correction or amendment below. Make A New Post
To highlight particular lines, prefix each line with @h@
Syntax highlighting:
Post expiration:
Post exposure:
Name / Title:
Email: