Advertisement
Guest User

Untitled

a guest
Jul 7th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class DTF_ForeverFat extends KFPawn;
  2.  
  3. //Let people buy wherever the fuck they want
  4. function bool CanBuyNow()
  5. {
  6.     local ShopVolume Sh;
  7.  
  8.     if( KFGameType(Level.Game)==None || KFGameType(Level.Game).bWaveInProgress || PlayerReplicationInfo==None )
  9.     {
  10.         return False;
  11.     }
  12.     else
  13.     {
  14.         Return True;
  15.     }
  16. }
  17.  
  18. defaultproperties
  19. {
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement