function chksize()
local small = getObject("Conditions[mr_small]")
if small:getBool(VConditionValue) == true then
Characters["mr"].CharacterSize = 30
end
end
registerEventHandler("mainLoop", "chksize")
function chksize()
local small = getObject("Conditions[mr_small]")
if small:getBool(VConditionValue) == true then
Characters["mr"].CharacterSize = 30
print("small happens", small:getBool(VConditionValue), Characters["mr"].CharacterSize )
end
end
registerEventHandler("mainLoop", "chksize")