Advertisement
Chronos_Ouroboros

Untitled

Feb 18th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. script "FDMeleeComboSystem" (void)
  2. {
  3. While(TRUE)
  4. {
  5. if(!CheckWeapon("MeleeAttack")) terminate;
  6. if(keyPressed(BT_ATTACK) && !keyPressed(BT_ALTATTACK)) GiveInventory ("MCSBFire", 1);
  7. if(keyPressed(BT_ALTATTACK) && !keyPressed(BT_ATTACK)) GiveInventory ("MCSBAltFire", 1);
  8. Delay (1);
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement