Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function preCacheFindStack(string)
  2. if string == nil then
  3. return false
  4. end
  5.  
  6. if string.match(string, "%d+") ~= nil then
  7. return tonumber(string.match(string, "%d+"))
  8. end
  9.  
  10. return false
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement