Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ------------------------------------namecall Init----------------------------------------
- print("[No vars]namecall:Not Supported")
- ------------------------------------index Init----------------------------------------
- __index = function(h,g)if type(g)=="string"then local j=e(h,g)if j then return j end end;return c(h,g)end;
- local c = __index;
- print("[No vars]index", c)
- ------------------------------------newindex Init----------------------------------------
- __newindex = newcclosure(function(Obj, Index, Value)
- local Return = (((Index == 'OnClientInvoke') or (Index == 'OnInvoke')) and Index) or (MetatableIndex(Obj, Index));
- if (typeof(Return) ~= typeof(Value)) and (Return ~= Index) then
- return MetatableNew(Obj, Index, Value)
- end
- local InstHook = Hooks.Insts[Obj]
- if InstHook then
- local Prop = InstHook[Index]
- if InstHook.MainWrite or (Prop and Prop[3]) then
- return
- end
- end
- for Class, Hook in next, (Hooks.Globals) do
- if IsA(Obj, Class) then
- local ClassHook = Hook[Index]
- if Hook.MainWrite or (ClassHook and ClassHook[3]) then
- return
- end
- end
- end
- return MetatableNew(Obj, Index, Value)
- end)
- print("[No vars]newindex", __newindex )
- ------------------------------------make_writeable Init----------------------------------------
- make_writeable=function(m)return setreadonly(m,false)end;
- ------------------------------------require----------------------------------------
- print(require())
- ------------------------------------REQUIRE MESSAGE----------------------------------------
- warn("--URGENT!--require function is kinda broken make sure for the first time you execute something with require execute it two times just in case :)--URGENT!--")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement