[INVALID] myChar.raceID broke

Here we stuff all the bugs we've managed to squash/squish/squelch.
Post Reply
dragon slayer
UOX3 Guru
Posts: 776
Joined: Thu Dec 21, 2006 7:37 am
Has thanked: 4 times
Been thanked: 26 times

myChar.raceID broke

Post by dragon slayer »

I have tryed differant methods and i can not get myChar.raceID to work
but after trying and trying this differant ways i still could not get the char to change races. I even tryed using the 'setrace command that has nearly the similiar way setting race on a char and it had no change to the chars race either.

Here is script I made for testing.
function onUseChecked( pUser, iUsed )
{
    pUser.SysMessage( pUser.raceID );
    pUser.raceID = 22;
    pUser.SysMessage( pUser.raceID );
    return false;
}
Post Reply