HungerJohnson

Untitled

May 13th, 2013
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. function CheckUpdate()
  2. Print("Checking cheat version...")
  3.     http.Fetch("", function(body, len, headers, code)
  4.         if body == version then
  5.             Notify(sound,green,"Your version is up to date! You are currently running version "..version)
  6.         else
  7.             Notify(sound,red,"Your version is outdated! Please update to version "..body)
  8.         end
  9.     end)
  10. end
Advertisement
Add Comment
Please, Sign In to add comment