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!

[RELEASE] ..:: V83 Dynastystory Full Source/Repack 2015::..

Initiate Mage
Joined
Sep 4, 2010
Messages
57
Reaction score
1
ill thought its already block in this source? if not just use MapleSolaxia Server Source.
Its already block exploits patched.



anyone wanna give us - Dupe hacks with storage, hired merchant dupe, dmg hack,fly, changing starting clothes to gm clothes, taking gm skills.

full patching so we can copy and paste thanks,
that how we can learn from it.

everybody is different no one is perfect so help us ty =]
 
Initiate Mage
Joined
Apr 20, 2015
Messages
46
Reaction score
0
Little problem, in my server when i trade golden maple leafs for items, i do not recieve the items and it takes the golden maple leafs.
item such as lvl 77 maple items or chaos zakum helmet, maby it's because this repack is requiring special wz files? i tried some of the edited wz files but none works can someone help me please?
 
not a programmer
Joined
Mar 30, 2015
Messages
532
Reaction score
62
Little problem, in my server when i trade golden maple leafs for items, i do not recieve the items and it takes the golden maple leafs.
item such as lvl 77 maple items or chaos zakum helmet, maby it's because this repack is requiring special wz files? i tried some of the edited wz files but none works can someone help me please?
Extract the .wz files in the 83 files.rar archive to Maple folder. Export them to xml with harepacker/wzrepacker/wzdumper for private server and replace.
 
Initiate Mage
Joined
Apr 20, 2015
Messages
46
Reaction score
0
Extract the .wz files in the 83 files.rar archive to Maple folder. Export them to xml with harepacker/wzrepacker/wzdumper for private server and replace.

where can i get the correct wz? tried to find them... nothing...
And how i do i export them exactly?
 
not a programmer
Joined
Mar 30, 2015
Messages
532
Reaction score
62
Backup (Move/Rename) your original MapleStory .wz files (Character, Item, Quest, String).
Open the dynastystory archive and inside you will see the '83 files.rar' archive, open that and you will see the custom .wz files.
Extract them to your MapleStory folder.

Open HaRepacker or WzDumper or WzRepacker and select GMS (old)
Select tools > Export file(s) > private server xml. Select Character, Item, Quest and String.
Replace your server wz folders with dumped folders.
 
Junior Spellweaver
Joined
Jul 4, 2011
Messages
163
Reaction score
3
1. how i can turn off that player get auto max skills when opening char
2. why all npc's at towns dont work i mean equips/pots sellers
 
Junior Spellweaver
Joined
Jul 4, 2011
Messages
163
Reaction score
3
btw u dont get the meso if some one buying from ur store.
 
Initiate Mage
Joined
Apr 27, 2008
Messages
44
Reaction score
2
I found the wz and extracted and replaced the ez folders and now i can't pick up items or move maps..
 
Last edited:
Initiate Mage
Joined
May 10, 2018
Messages
1
Reaction score
0
the gm command is broken, search [MAP] [name]
Here's the fix.

in file client.command command.java
find funcion named
public static boolean executeGMCommand(MapleClient c, String[] sub, char heading) {
replace everycode in !search entry by the following code
// // <editor-fold defaultstate="collapsed" desc="!search">
Code:
        } else if (sub[0].equalsIgnoreCase("search")) {
            if (sub.length < 2)
            {
               
            }
            if (sub.length > 2) 
            {
                String search = joinStringFrom(sub, 2);
                MapleData data = null;
                MapleDataProvider dataProvider = MapleDataProviderFactory.getDataProvider(new File("wz/String.wz"));
                player.dropMessage("~Searching~ <<Type: " + sub[1] + " | Search: " + search + ">>");
                if (!sub[1].equalsIgnoreCase("ITEM")) 
                {
                    if (sub[1].equalsIgnoreCase("NPC")) 
                    {
                        data = dataProvider.getData("Npc.img");
                    } 
                    else if (sub[1].equalsIgnoreCase("MOB")) 
                    {
                        List<String> retMobs = new LinkedList<String>();
                        data = dataProvider.getData("Mob.img");
                        List<Pair<Integer, String>> mobPairList = new LinkedList<Pair<Integer, String>>();
                        for (MapleData mobIdData : data.getChildren()) {
                            int mobIdFromData = Integer.parseInt(mobIdData.getName());
                            String mobNameFromData = MapleDataTool.getString(mobIdData.getChildByPath("name"), "NO-NAME");
                            mobPairList.add(new Pair<Integer, String>(mobIdFromData, mobNameFromData));
                        }
                        for (Pair<Integer, String> mobPair : mobPairList) {
                            if (mobPair.getRight().toLowerCase().contains(search.toLowerCase())) {
                                retMobs.add(mobPair.getLeft() + " - " + mobPair.getRight());
                            }
                        }
                        if (retMobs != null && retMobs.size() > 0) {
                            for (String singleRetMob : retMobs) {
                                player.dropMessage(singleRetMob);
                            }
                        } else {
                            player.dropMessage("No Mob's Found");
                        }
                    } 
                    else if (sub[1].equalsIgnoreCase("SKILL")) 
                    {
                        data = dataProvider.getData("Skill.img");
                    } 
                    else if (sub[1].equalsIgnoreCase("Map"))
                    {
                        // Add methods for searching map...
                        player.dropMessage("start custome map searching meow~");
                        data = dataProvider.getData("Map.img");
                        
                        List<Pair<Integer, String>> searchList = new LinkedList<>();
                        // load every map info in wz in to searchList, then search it one by one
                    for (MapleData searchData : data.getChildren()) {
                        for ( MapleData data_level_2 : searchData.getChildren())
                        {
                            // map_id
                            int searchFromData = Integer.parseInt(data_level_2.getName());
                            String infoFromData = 
                                    MapleDataTool.getString(data_level_2.getChildByPath("streetName"), "NO-NAME") + 
                                        " - " + 
                                    MapleDataTool.getString(data_level_2.getChildByPath("mapName"), "NO-NAME");
                                    //MapleDataTool.getString(data_level_2.getChildByPath("name"), "NO-NAME");
                            searchList.add(new Pair<Integer, String>(searchFromData, infoFromData));
                        }
                        
                    }
                    for (Pair<Integer, String> searched : searchList) {
                        if (searched.getRight().toLowerCase().contains(search.toLowerCase())) {
                            player.dropMessage(searched.getLeft() + " - " + searched.getRight());
                        }
                    }
                        
                    } 
                    else 
                    {
                        player.dropMessage("Invalid search.\nSyntax: '/search [type] [name]', where [type] is NPC, MAP, ITEM, MOB, or SKILL.");
                        return true;
                    }
                    
                } 
                else //item
                {
                    for (Pair<Integer, String> itemPair : MapleItemInformationProvider.getInstance().getAllItems()) {
                        if (itemPair.getRight().toLowerCase().contains(search.toLowerCase())) {
                            player.dropMessage(itemPair.getLeft() + " - " + itemPair.getRight());
                        }
                    }
                    player.dropMessage("Search Complete.");
                }
            }
            else 
            {
                player.dropMessage("Invalid search.\nSyntax: '/search [type] [name]', where [type] is NPC, ITEM, MOB, or SKILL.");
            }
s8rzKti - [RELEASE] ..:: V83 Dynastystory Full Source/Repack 2015::.. - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Initiate Mage
Joined
Apr 28, 2012
Messages
13
Reaction score
1
Re: [RELEASE] ..:: V83 Dynastystory Full Source/Repack 2015/20166 ::..

you forgot the java tag and don't link to other forums for the download lol. Nobody wants to register on lower life form forum. Also idk why you bother adding 2016 to the title, it's not even 2016 yet

--

Someone with too much time, get it and mirror it so I can add to my collection

what happens when you do something good for the society but society treats you like poop itself. Be nice please? at least he bothers to put up the repack instead of not sharing something valuable like that with us. He has a choice to not do it. So you better be respectful, kiddo.
 
Joined
Mar 5, 2011
Messages
1,086
Reaction score
212
Re: [RELEASE] ..:: V83 Dynastystory Full Source/Repack 2015/20166 ::..

what happens when you do something good for the society but society treats you like poop itself. Be nice please? at least he bothers to put up the repack instead of not sharing something valuable like that with us. He has a choice to not do it. So you better be respectful, kiddo.

wigga that was almost 3 years ago
 
Initiate Mage
Joined
Apr 28, 2012
Messages
13
Reaction score
1
Re: [RELEASE] ..:: V83 Dynastystory Full Source/Repack 2015/20166 ::..

Hhahahahahahahaha soryr my bad
 
Back
Top