Page 1 of 1

myChar.raceID broke

Posted: Wed Mar 14, 2012 10:48 pm
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;
}