stinger_m/zscript/utranslocator.zsc
Marisa Kirisame ce68db4b36 Dispersion Pistol fully implemented.
Jump boots (mostly) implemented (replacement feature not done yet).
Various adjustments.
DamNums coloring support.
2019-09-02 21:19:17 +02:00

12 lines
218 B
Text

Class UTranslocatorAmmo : Ammo
{
}
Class UTranslocator : UnrealWeapon
{
override bool TryPickup( in out Actor toucher )
{
if ( !sting_telegun ) return false; // not allowed
return Super.TryPickup(toucher);
}
}