Display MoreDisplay MoreDisplay MoreHello!
My experience with this bug.
Freighters cannot be used if the person selling the resource has less of the resource in the warehouse than the amount put on the market. If the buyer sets the market offer to 10 million, but you have 2 million, you will not be able to use freighters.
If the buyer reduces the market offer to 1 million, then you will be able to use freighters.
That's how it worked for me.
This allows me to use freighters in trade.
To be able to sell resources with freighters, you must always have more resources in the warehouse than the market offer.
These are my conclusions for this bug
The problem is a not fixed frontent bug during the sell...
To fix that, you can use this tampermonkey snipped (disclaimer: use with own risk):
Display MoreCode
- // ==UserScript==
- // @name Shop-Sell-Fix
- // @namespace http://tampermonkey.net/
- // @version 1.0
- // @description Shop-Sell-Fix
- // @author MrMate
- // @match https://*.ikariam.gameforge.com/*
- // @exclude https://forum.ikariam.gameforge.com/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=gameforge.com
- // @grant none
- // ==/UserScript==
- (function() {
- /* #1: Global fix, but ment for the shop: The console.warn is not existing in Ikariam, so provide a fake one to be able to sell again */
- window.console.warn = () => {};
- })();
It's really sad, that this bug has not been discovered from the GameForge devs, yet...
How to use this fix?
You can run this in the inspector by copy paste it (maybe you need to write "allow pasting" once)
or
install the firefox/chrome extension "Tampermonkey", create a new snipped and replace the content with my script.