08-18-2014, 07:30 PM
Wow I didn't expect this to work:
This is kinda useless, but I didn't think we could have custom functions in the userdata.
function cBlockArea:SetName(a_Name)
self.Name = a_Name
return true
end
local Blck = cBlockArea()
Blck:SetName("TestName")
print(Blck.Name)
This is kinda useless, but I didn't think we could have custom functions in the userdata.

