Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

CashPackage fix for xephyr

Newbie Spellweaver
Joined
Jul 19, 2012
Messages
8
Reaction score
2
in Cashitemfactory find:

PHP:
        /*final MapleData b = data.getData("CashPackage.img");
        for (MapleData c : b.getChildren()) {
            if (c.getChildByPath("SN") == null) {
                continue;
            }
            final List<Integer> packageItems = new ArrayList<Integer>();
            for (MapleData d : c.getChildByPath("SN").getChildren()) {
                packageItems.add(MapleDataTool.getIntConvert(d));
            }
            itemPackage.put(Integer.parseInt(c.getName()), packageItems);
        }*/

remove the /*
Then go to CashPackage.xml

replace
PHP:
<string name="0" value="10003361
" />

with
PHP:
<string name="0" value="10003361" />
 
Newbie Spellweaver
Joined
Jul 19, 2012
Messages
8
Reaction score
2
Fix for DarkSight Xephyr

Under
Code:
            } else if (statups.containsKey(MapleBuffStat.BLUE_AURA)) {
                mplew.write(0);

add
Code:
            } else if (statups.containsKey(MapleBuffStat.DARKSIGHT)) {
		mplew.write(0);

then find
Code:
if (statup.getKey() == MapleBuffStat.SHADOWPARTNER ||

after add
Code:
 statup.getKey() == MapleBuffStat.DARKSIGHT ||
 
Newbie Spellweaver
Joined
Jul 19, 2012
Messages
8
Reaction score
2
The xml is for all the 114 servers

but you need to uncomment the cashpackage in itemfactory thats for xephyr...otherwise it wont work you smarty
 
Junior Spellweaver
Joined
Apr 7, 2012
Messages
126
Reaction score
25
Thanks alot helped me alot been wondering why wasn't my Special items from cash shop working.
 
Back
Top