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 |
//============================================================================= // QuadJump - Allows you to quad-jump instead of the normal double jump! //============================================================================= class MutQuadJump extends Mutator; function ModifyPlayer(Pawn Other) { local xPawn x; x = xPawn(Other); if(x != None) { // Increase the number of times a player can jump in mid air x.MaxMultiJump = 3; x.MultiJumpRemaining = 3; // Also increase a bit the amount they jump each time x.MultiJumpBoost = 50; } Super.ModifyPlayer(Other); } defaultproperties { IconMaterialName="MutatorArt.nosym" ConfigMenuClassName="" GroupName="Jumping" FriendlyName="QuadJump" Description="When double jump just isn't enough." } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |