Tutorials

Utilities

Misc. Tips & Tricks

  • Iterating through all Pawns is a bad idea. Avoid using ForEach AllActors(class’Pawn’, P) on the server. For (P = Level.PawnList; P != None; P = P.NextPawn) does the same and is much more efficient. Always look for a linked list that contains the actors you want to access before using ForEach AllActors(…).