Page 3 of 3 FirstFirst 1 2 3
Results 21 to 24 of 24

Thread: New map

  
  1. #21
    Dragon DragonsLover's Avatar
    Join Date
    Aug 2009
    Location
    Quebec
    Posts
    1,490
    Gamer IDs

    Steam ID: dragonslover

    Default Re: New map

    Why? It blocks the way.
    About the Knight, well, ensure that if the Knight if dead ONLY, lose the game.
    The AP1 is over the lava in a room. The player must build a bridge there in order to trigger it which isn't obvious.
    I'll check the script later.
    I like dragons! They're the center of my life! I'll never forget them...



  2. #22
    Dragon DragonsLover's Avatar
    Join Date
    Aug 2009
    Location
    Quebec
    Posts
    1,490
    Gamer IDs

    Steam ID: dragonslover

    Default Re: New map

    Okay, you don't seem to catch totally what I'm saying, so I'll show you. Note that it's only a part of it, there's other similar mistakes of that kind thru all of your script file:

    Incorrect:
    Code:
    Dis
    
    SET_GENERATE_SPEED(500)
    
    QUICK_OBJECTIVE(0,"This ocean of fire is being contested by two rival keepers and the heroes who control most of the islands in this realm. Slaughter them all and dominate this realm.",PLAYER0)
    QUICK_INFORMATION(1,"You have little to start with Keeper. However, you have arrived adjacent to a semi-abandoned hero base. Use it as a staging post for your attack. To help you, an elite knight has come into your service. Take good care of him.",PLAYER0)
    
    AIs
    
    ...
    
    IF_ACTION_POINT(2,PLAYER0)
      SET_FLAG(PLAYER0,FLAG1 == 1)
      IF(PLAYER0,FLAG1 == 1)
          SET_TIMER(PLAYER0,TIMER0)
      ENDIF
    ENDIF
    ENDIF
    
    IF(PLAYER0,TIMER0 == 4000)
      NEXT_COMMAND_REUSABLE
        ADD_CREATURE_TO_LEVEL(PLAYER_GOOD,FAIRY,3,6,4,5000)
        ADD_CREATURE_TO_LEVEL(PLAYER_GOOD,FLY,3,30,8,500)
          SET_TIMER(PLAYER0,TIMER0)
        ENDIF
      ENDIF
    ENDIF
    
    ...
    
    IF(PLAYER0,FLAG0 == 1)
      IF_AVAILABLE(PLAYER0,POWER_IMP,0,0)
        IF(PLAYER0,IMP == 0)
          LOSE_GAME
        ENDIF
      ENDIF
    ENDIF
    Correct:
    Code:
    REM Dis
    
    SET_GENERATE_SPEED(500)
    
    QUICK_OBJECTIVE(0,"This ocean of fire is being contested by two rival keepers and the heroes who control most of the islands in this realm.  Slaughter them all and  dominate this realm.",PLAYER0)
    QUICK_INFORMATION(1,"You have little  to start with Keeper. However, you have arrived adjacent to a semi-abandoned hero base. Use it as a staging post for your attack. To help you, an elite knight has come into your service. Take good care of him.")
    
    REM AIs
    
    ...
    
    IF_ACTION_POINT(2,PLAYER0)
      SET_FLAG(PLAYER0,FLAG1,1)
      IF(PLAYER0,FLAG1 == 1)
          SET_TIMER(PLAYER0,TIMER0)
      ENDIF
    ENDIF
    
    IF(PLAYER0,TIMER0 >= 4000)
      NEXT_COMMAND_REUSABLE
      ADD_CREATURE_TO_LEVEL(PLAYER_GOOD,FAIRY,3,6,4,5000)
      NEXT_COMMAND_REUSABLE
      ADD_CREATURE_TO_LEVEL(PLAYER_GOOD,FLY,3,30,8,500)
      NEXT_COMMAND_REUSABLE
      SET_TIMER(PLAYER0,TIMER0)
    ENDIF
    
    ...
    
    IF(PLAYER0,FLAG0 == 1)
      IF_AVAILABLE(PLAYER0,POWER_IMP == 0)
        IF(PLAYER0,IMP == 0)
          LOSE_GAME
        ENDIF
      ENDIF
    ENDIF
    So, Hades, seriously, RTFM!

    EDIT: I spotted another mistake. Look again above.
    Last edited by DragonsLover; September 3rd, 2013 at 21:34.
    I like dragons! They're the center of my life! I'll never forget them...



  3. #23
    Warlock
    Join Date
    Sep 2012
    Posts
    411

    Default Re: New map

    This should fix some of the flaws

    https://www.dropbox.com/sh/51qrec76v7ub5jb/Osgfi8sQq-

  4. #24
    Dragon DragonsLover's Avatar
    Join Date
    Aug 2009
    Location
    Quebec
    Posts
    1,490
    Gamer IDs

    Steam ID: dragonslover

    Default Re: New map

    I just looked again at the script and sighed... You didn't understand what I said above didn't you?
    I like dragons! They're the center of my life! I'll never forget them...



Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •