HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

NE Racial Build Bug

10-21-2004, 12:56 PM#1
xGT4x
I think NE has a bug in Racial Build, the Initilalization code is following:
Code:
    call AddBlock(1, ELF_ALTAR, true, 0, DEN_OF_WONDERS, 36)
    call AddBlock(8, ORC_ALTAR, true, 0, MOON_WELL, 2)
    call AddHarass(1, 1, HUNTRESS)
    call AddHarass(3, 2, FAERIE_DRAGON)

Shouldn't it be the following?
Code:
    call AddBlock(1, ELF_ALTAR, true, 0, DEN_OF_WONDERS, 36)
    call AddBlock(8, ELF_ALTAR, true, 0, MOON_WELL, 2)
    call AddHarass(1, 1, HUNTRESS)
    call AddHarass(3, 2, FAERIE_DRAGON)

I'll look through the code in the future and if I find any bugs I'll post here!
10-21-2004, 12:58 PM#2
Zalamander
Quote:
Originally Posted by xGT4x
I think NE has a bug in Racial Build, the Initilalization code is following:
Code:
    call AddBlock(1, ELF_ALTAR, true, 0, DEN_OF_WONDERS, 36)
    call AddBlock(8, ORC_ALTAR, true, 0, MOON_WELL, 2)
    call AddHarass(1, 1, HUNTRESS)
    call AddHarass(3, 2, FAERIE_DRAGON)

Shouldn't it be the following?
Code:
    call AddBlock(1, ELF_ALTAR, true, 0, DEN_OF_WONDERS, 36)
    call AddBlock(8, ELF_ALTAR, true, 0, MOON_WELL, 2)
    call AddHarass(1, 1, HUNTRESS)
    call AddHarass(3, 2, FAERIE_DRAGON)

nope that 8 orc altars is in all races it's just there to be a block that never turns off becuse it is only unlocked if they build something they can't build, a elf AI can't build 8 orc altars :)

The purpose of this block is to prevent night elf computer from building any moon well as first building(no moonwell until 10 seconds has passed(2x5)).
10-22-2004, 09:08 PM#3
xGT4x
Lol weird methods^^