Advertisement
ArcheKruz

Force Pistol Start Script for Doom

Aug 19th, 2014
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #library "PSTART"
  2. #include "zcommon.acs"
  3.  
  4. Script 255 ENTER
  5. {
  6. Thing_ChangeTID(0, 4096+PlayerNumber());
  7. ClearInventory();
  8. SetActorProperty(4096+PlayerNumber(), APROP_Health, 100);
  9. GiveInventory("Fist",1);
  10. GiveInventory("Pistol",1);
  11. TakeInventory("Clip",0x7FFFFFFF);
  12. GiveInventory("Clip",50);
  13. SetWeapon("Pistol");
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement