Quote:
Originally Posted by joeydenhaag
Anyone here using "GWA˛ Killroy Stoneskin"? After opening the chest I keep getting the in-game message "you may not enter that outpost". Anyone had a similar issue and knows the solution? I do have a guild with guild hall so I guess that can't be the problem and I have most, if not all all outposts unlocked.
|
What is the outpost that it shows in the code? Where is it trying to go?
Scroll down through the code and read it till the end and see what the $Map_ID is. It should just go back to Gunnars Hold unless you have some sort of merch function that uses a GH when your inventory is near full. Here is an example of what one of my Kilroy scripts show upon completion of the mission:
Code:
Update("Returning to town")
PingSleep(1000)
If GetMapID() <> $townGunnar Then
TravelTo($townGunnar)
WaitForLoad()
EndIf
The $Map_ID that I have for the constant $townGunnar is 644.
Code:
Global $townGunnar = 644