You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var matches = /Market_LoadOrderSpread\( (.+) \);/.exec(page);
var item_nameid = matches[1];
This will result in two values:
The first value comes from Market_LoadOrderSpread( 77489411 ); // The matches[1] is 77489411
The second value comes from Market_LoadOrderSpread( 77489411 ); }, 2 * 60 * 1000 ); // The matches[1] is 77489411 ); }, 2 * 60 * 1000
The second value will cause the value of the red box to become 77489411 ); }, 2 * 60 * 1000
After fixing the regular expression:
Both values come from Market_LoadOrderSpread( 77489411 ); // Both matches[1] are 77489411
The text was updated successfully, but these errors were encountered:
disanyixing
changed the title
fix getCurrentMarketItemNameId error
Fix getCurrentMarketItemNameId error
Sep 30, 2023
This will result in two values:
The first value comes from Market_LoadOrderSpread( 77489411 ); // The matches[1] is 77489411
The second value comes from Market_LoadOrderSpread( 77489411 ); }, 2 * 60 * 1000 ); // The matches[1] is 77489411 ); }, 2 * 60 * 1000
The second value will cause the value of the red box to become 77489411 ); }, 2 * 60 * 1000
After fixing the regular expression:
Both values come from Market_LoadOrderSpread( 77489411 ); // Both matches[1] are 77489411
The text was updated successfully, but these errors were encountered: