Hi,
I'm using this automapper plugin for Alter Aeon (I didn't write it):
https://github.com/Neurrone/Mushclient-Plugins/blob/master/AAMapper/worlds/plugins/AAMapper.xml
The mapper find function doesn't create clickable hyperlinks properly. Can anyone show me how to fix this?
For example, I type mapper find hall and get this output:
The multi-purpose hall (5035.80784) - 2 rooms away
The multi-purpose hall (5035.80786) - 3 rooms away
If I click on either hyperlink I get this message:
Room uids must have the format area_num.room_num
So I deleted this:
local areanum, roomnum = parseRoomUid(wantedUid)
if not (roomnum and areanum) then
mapper.mapprint ("Room uids must have the format area_num.room_num")
return
end
Now when I click I get this message:
Room 7CA48639C596B77C24782B16950D702F not found in database.
If I type mapper next, mapper 1 or mapper 2 it will speedwalk me to the correct room.
I'm using this automapper plugin for Alter Aeon (I didn't write it):
https://github.com/Neurrone/Mushclient-Plugins/blob/master/AAMapper/worlds/plugins/AAMapper.xml
The mapper find function doesn't create clickable hyperlinks properly. Can anyone show me how to fix this?
For example, I type mapper find hall and get this output:
The multi-purpose hall (5035.80784) - 2 rooms away
The multi-purpose hall (5035.80786) - 3 rooms away
If I click on either hyperlink I get this message:
Room uids must have the format area_num.room_num
So I deleted this:
local areanum, roomnum = parseRoomUid(wantedUid)
if not (roomnum and areanum) then
mapper.mapprint ("Room uids must have the format area_num.room_num")
return
end
Now when I click I get this message:
Room 7CA48639C596B77C24782B16950D702F not found in database.
If I type mapper next, mapper 1 or mapper 2 it will speedwalk me to the correct room.