Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 |
//============================================================================= // AvoidMarker. // Creatures will tend to back away when near this spot //============================================================================= class AvoidMarker extends Triggers native notPlaceable; var byte TeamNum; function Touch( actor Other ) { if ( (Pawn(Other) != None)&& RelevantTo(Pawn(Other)) ) Pawn(Other).Controller.FearThisSpot(self); } function bool RelevantTo(Pawn P) { return ( (AIController(P.Controller) != None) && ((P.Controller.PlayerReplicationInfo == None) || (P.Controller.PlayerReplicationInfo.Team == None) || (P.Controller.PlayerReplicationInfo.Team.TeamIndex != TeamNum)) ); } function StartleBots() { local Pawn P; ForEach CollidingActors(class'Pawn', P, CollisionRadius) if ( RelevantTo(P) ) AIController(P.Controller).Startle(self); } defaultproperties { TeamNum=255 CollisionRadius=100.000000 } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |