I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX

Legacy:Changing Bots Pawn Class

From Unreal Wiki, The Unreal Engine Documentation Site
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.