I'm a doctor, not a mechanic

Legacy:Changing Bots Pawn Class

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 13:05, 20 December 2005 by SuperApe (Talk)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Changing the Pawn Class for Your Bot[edit]

If your mod just makes changes to the player pawn that don't require any difference in AI from what ships with UT2004, then you can simply override the SpawnBot function in your GameInfo subclass like so:

function Bot SpawnBot(optional string botName)
{
    local Bot B;
 
    B = Super.SpawnBot();
 
    if(B != None)
        B.PawnClass = class'YourModsPawnClass';
 
    return B;
}

Related Topics[edit]

Discussion[edit]

dataangel: This should eventually be integrated into a tutorial on a simple new gametype.