Skip to content

List of ambushes/waylays/random encounters

Does anyone have a list of all the different ambushes that occur between locations (10 bandit attack, 2 wyverns, etc.), where they can occur and what time? How bout for bg2 (including the suna seni, the poisoned guy, etc.)

Comments

  • BleriotBleriot Member Posts: 31
    You find everything in the area scripts for ar0041 - 0046, i.e. ar0041.bcs etc which you can open and read with Near Infinity
    For BG1 those are ar5701, 5801, 5901, 6000, 6001, 5601

    Example
    IF
    	OnCreation()
    	Global("RandomEncounters","GLOBAL",0)
    	GlobalLT("Chapter","GLOBAL",4)
    THEN
    	RESPONSE #100
    		SetGlobal("RandomEncounters","GLOBAL",1)
    		CreateCreature("RESUNA",[488.558],NE)  // Suna Seni
    		CreateCreature("REELDAR",[500.454],NE)  // Eldarin
    		CreateCreature("REFIGH01",[552.476],NE)  // Slaver
    		CreateCreature("REMAGE01",[427.548],NE)  // Slaver Wizard
    		CreateCreatureObjectEffect("A7!GXCL1","","REMAGE01")  // Lesser Clay Golem
    		CreateCreature("RECLER01",[525.591],NE)  // Slaver
    		CreateCreature("RETHIE01",[585.542],NE)  // Slaver
    END
Sign In or Register to comment.