Advertisement
Alakazard12

Antivirus

Jan 4th, 2013
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. local meta = {
  2.     __newindex = function(tbl, index, value)
  3.         print("Indexing not allowed....")
  4.     end;
  5.    
  6.     __index = function(tbl, index)
  7.         print("STOP IT!")
  8.     end;
  9. }
  10.  
  11. setmetatable(term, meta)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement