Looking for THE world famous Heartwood Quester? Look Here!
0 Members and 1 Guest are viewing this topic.
function EUO_CharGhost() local result = 'NO' if UO.CharType == 607 or UO.CharType == 608 then result='yes' end -- male/female elf if UO.CharType == 694 or UO.CharType == 695 then result='yes' end -- male/female Gargole if UO.CharType == 402 or UO.CharType == 403 then result='yes' end -- male/female Human return resultendfunction CharGhost() return ( UO.CharType==607 or UO.CharType==608 or UO.CharType==694 or UO.CharType==695 or UO.CharType==402 or UO.CharType==403 ) end