You are not logged in.

Applications: [GameMaster: OPEN] | [Volunteer Testers: OPEN]


This forum will be permanently shut down on Friday 13.07.2018
Please copy or save all important information from old forum before they will be deactivated
We have moved to new board. https://forum.runesofmagic.gameforge.com/Come join us.

1

Sunday, July 8th 2012, 2:02pm

Bagframe.lua Script Fail

Description: When you link a stack of items it goes in to the chatbox like it should.. but! it also opens the split frame witch is Wrong.

Version: 5.0.0.2545

Fix!

ChatEdit_AddItemLink missing the

Source code

1
return true


for none developers see third comment to a fast fix

2

Sunday, July 8th 2012, 4:45pm

Great! Where do we find this line at? I have a LOT of RoM Luascripts.

3

Sunday, July 8th 2012, 6:00pm

Write this in any .lua in the rom interface folder :)
I created a file called "Fix.lua" with all these things :)

Source code

1
2
3
4
5
6
Orginal_ChatEdit_AddItemLink = ChatEdit_AddItemLink
function New_ChatEdit_AddItemLink(arg1, arg2, arg3)
    Orginal_ChatEdit_AddItemLink(arg1, arg2, arg3)
    return true
end
ChatEdit_AddItemLink = New_ChatEdit_AddItemLink