@
[Only registered and activated users can see links. Click Here To Register...]
So map travel from GH to outposts are not working and the code to communicate with the NPC is not working either
GWA2
;~ Description: Travel to your guild hall.
Func TravelGH()
Local $lOffset[3] = [0, 0x18, 0x3C]
Local $lGH = MemoryReadPtr($mBasePointer, $lOffset)
SendPacket(0x18, $HEADER_GUILDHALL_TRAVEL, MemoryRead($lGH[1] + 0x64), MemoryRead($lGH[1] + 0x68), MemoryRead($lGH[1] + 0x6C), MemoryRead($lGH[1] + 0x70), 1)
Return WaitMapLoading()
EndFunc ;==>TravelGH
;~ Description: Leave your guild hall.
Func LeaveGH()
SendPacket(0x8, $HEADER_GUILDHALL_LEAVE, 1)
Return WaitMapLoading()
EndFunc ;==>LeaveGH
#EndRegion Travel
HEADER
Global Const $HEADER_PARTY_ENTER_GUILD_HALL = 0x00AF
Global Const $HEADER_PARTY_TRAVEL = 0x00B0
Global Const $HEADER_PARTY_LEAVE_GUILD_HALL = 0x00B1