Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Gokuma

Members
  • Content count

    3480
  • Joined

  • Last visited

File Reviews posted by Gokuma

  1. DOOM: War Games

       57

    Not five stars compared to modern maps.  Despite the late submission year, this wad dates back to May 29th, 1994.   I got it on an add-on CD in 1995.   Five Stars for its time to bump up the average as this was one of my favorite classic wads of its time... So much so I messed around adding scripting with more switches to manipulate a spawn number by its digits and spawn whatever there's a number for.

     

    And here are those scripts for seven different switches to execute, though I recommend limiting selectible numbers.   And you could do something more involved like summon groups of monsters and implement the thing hate command to make them fight.

    #include "zcommon.acs"
    
    int haha;
    
    
    SCRIPT 20 OPEN
        {
        haha = 154;
        }
            
    SCRIPT 23 (void)
        {
        haha+=1;
        printbold (d:haha);
        }
        
    SCRIPT 22 (void)
        {
        haha+=10;
        printbold (d:haha);
        }
    
    SCRIPT 21 (void)
        {
        haha+=100;
        printbold (d:haha);
        }
    
    SCRIPT 26 (void)
        {
        haha-=1;
        printbold (d:haha);
        }
    
    SCRIPT 25 (void)
        {
        haha-=10;
        printbold (d:haha);
        }
        
    SCRIPT 24 (void)
        {
        haha-=100;
        printbold (d:haha);
        }
    
    SCRIPT 27 (void)
        {
        printbold (d:haha);
        Thing_Spawn (random(3,6), haha, 0, 7);    
        }

×