Need someone that can help on fixing kronos trade screen bug. Thanks you can reach me via pm
Printable View
Need someone that can help on fixing kronos trade screen bug. Thanks you can reach me via pm
yeah this^ lol let me know as well lmaoQuote:
Originally Posted by Nature Runes [Only registered and activated users can see links. Click Here To Register...]
what is the bug
A visual bug with trading; whether done all the way through or canceled, if you trade someone, then that next trade you can see all the last items offered still, even though they are not really there/do not dupe etc. It seems its missing some kind of interface refresh or something. Just a odd little visual bug.
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
Looks like its not clearing the other players item container on the users side
Any idea how to clear it ?
UP - if anyone wants to make some quick money ? $$
io.ruin.model.item.containers > Trade.java
Look for
Right below that at the top of the method add this:Code:private void open() {
You're welcome.Code:sendUpdates(targetTrade);
Ill try it Rn ! Ill let you know $ :)Quote:
Originally Posted by Armo [Only registered and activated users can see links. Click Here To Register...]
Free of charge dw.Quote:
Originally Posted by Nature Runes [Only registered and activated users can see links. Click Here To Register...]
It did work, we now have a fix boys !Quote:
Originally Posted by Armo [Only registered and activated users can see links. Click Here To Register...]
Pretty sure I've test it before and place it a the wrong place ..
Huge thanks for the Release mate. Let me know if I can do something to help you back in return :)
It's not the fix, I tried this way too it works with one person but then trade another person a different one so for e.g, player 1 trade player 2, then player 1 trade player 3 and you will see what i mean mate
I'll look into itQuote:
Originally Posted by FrozenX [Only registered and activated users can see links. Click Here To Register...]
Quote:
Originally Posted by FrozenX [Only registered and activated users can see links. Click Here To Register...]
Add this at the top of open() in the Trade class
Code:for(int slot = 0; slot < 28; slot++) {
update(slot);
}
sendUpdates(targetTrade);