Maple Story --Library--

Status
Not open for further replies.
Newbie Spellweaver
Joined
Apr 26, 2009
Messages
49
Reaction score
3
Library (Find releases, fixes, guides & more)
Press Button Show will Show you wat you need.
Sorry if it is not Nice This is my 1st Post! :D
Have a Happy Searching , i will search more Realse and Post :D

Npcs​


Maps​


Shops​

Drops​


Guides​


Commands​


Events PQ​

GM Server/Tools​
Java Codes
Hashcalc

IWW's Monster SQL Generator v2 [OdinMs]

Repacks​



Systems​

LocalHost​


CMS/Website​


wz/XML​

Maple Story Setup​


---------
Please Post Somethings if Wrong URL.
---------
Credits:
Credits by Roamer.
---------
Please Stop Giving Credit that is Not Good
Don like it Just fuck off this URL.
 
Last edited:
How about you just entirely Copy Roamers Library. And update it with yours ... :p

EDIT:
Click here for a list of Commands and id's!
------------------

Latest update: UPDATED!!
------------------
:Library Announcement:
+Click the SHOW button under what category you want and it will show it!

Easier way to find your tool/npc/command/ETC -

+
You can do CLT+F and type in what your looking for, example.
' im looking for sera, ill do CLT+F and type in "sera" and it will take you to places where it says "sera".

+
Or you can also use the search button, and type it there.
------------------
Library (Find releases, fixes, guides & more)


*Updated multi times daily!*
------------------
-------
Orange --v55*
Purple --v56*
Red--v59*
Blue--v60*
Green--v61*
Cyan--v62*
Pink--v63*
------
------------------
OdinMS Source Library
OdinMS Clean rev 988 Download

------------------

Click the SHOW button under what category you want and it will show it!
------------------
:MySQL Commands:

:Table Of Contents:

1. Logged in fix/glitch
2. Adding/Setting Nx
3. Setting all shop prices
4. Removing an item sold in all shops
5. Setting an account as a GM
6. Removing a ban
7. Adding guild points to a guild
8. Removing skills from ALL players (in case of buggy)
9. Deleting chars
10. Setting a chars stats
11. Manual ban (account only)
12. Fixing inventory glitch (0 of an item)
13. Reg and Ranking Fix
14. Wedding Drops
15. Char wipe
16. Inventory wipe
17. Adding mesos to EVERYONES storage
18. Negative exp fix
19. Negative meso fix.
20. Added/Subtracting slots in storages.
21. Spirits and Scales drops
22. Setting price of one item to X
23. Setting price of a whole shop to X.
24. Deleting a item from droping from all monsters
25. Negative mesos in storage
26. Hp/Mp bug
27. Removal of pet equips


Logged in fix/glitch:
Code:
Update accounts set loggedin = 0
Added/Setting nx:
Code:
To ADD: update accounts set nxcash = nxcash + [amount]

To SET: update accounts set nxcash = [amount]
Setting all shop prices:
Code:
update shopitems set price = [amount]
Removing an item sold in all shops
Code:
DELETE FROM shopitems WHERE itemid = [id]
Setting an account as a GM:
Code:
update accounts where accountid = [id you want to be gm] set gm = 1

and

update characters where name = '[name]' set gm = 1
Removing a ban:
This will unban ONLY an account, the ip and MAC will still be banned.
Code:
update accounts where accountid = [id] set banned = 0
Adding guild points to a guild:
Code:
update guilds where guildid = [id] set GP = [amount]
Removing skills from ALL players (in case of buggy)
Code:
delete from skills where skillid = [id of skill to delete]
Deleting chars:
Code:
delete from characters where name = '[name]'
Setting a chars stats:
Can do with hp/mp/maxhp/maxmp
Code:
update characters where name = '[name]' set [stat (str, int, luk, dex)] = [amount]
Manual ban:
Code:
update accounts where accountid = [id] set banned = 1
Fixing inventory glitch (0 of items in inv)
This will make it so stars arent deleted.

Code:
First:
update inventoryitems SET quantity = 1 where itemid = 2070006
and 2070005
and 2070016
and 2070004
and 2070007

Then

delete from inventoryitems where quantity = 0
For reg and rankings problems execute these 3 codes:
Code:
ALTER TABLE `accounts` MODIFY COLUMN `macs` TINYTEXT NULL DEFAULT NULL;
ALTER TABLE `characters` ADD `rebirth` INTEGER UNSIGNED NOT NULL DEFAULT 0
ALTER TABLE `accounts` MODIFY COLUMN `banreason` TEXT NULL DEFAULT NULL;
Wedding Drops:
Code:
INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(9300098, 2020020,2000);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(9300098, 5251003,2000);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(93000*** 5251003,2000);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(93000*** 2020020,2000);
Char wipe
This will wipe all chars except ones with GM set to 1, good for beta wipe, ect.
Code:
delete from characters where gm = 0
Inventory Wipe
Should clear your whole `inventoryitems` table, good for beta wipe, ect.
Code:
delete from inventoryitems where inventorytype = -1;
delete from inventoryitems where inventorytype = 0;
delete from inventoryitems where inventorytype = 1;
delete from inventoryitems where inventorytype = 2;
delete from inventoryitems where inventorytype = 3;
delete from inventoryitems where inventorytype = 4;
delete from inventoryitems where inventorytype = 5;
Adding mesos to everyones storage
Code:
UPDATE storages SET meso = meso + [amount]
Negative exp fix
Code:
UPDATE characters SET exp = 0 WHERE exp < 0
Negative Meso Fix
Code:
UPDATE storages SET meso = 0 WHERE meso < 0
Adding/Subtracting slots in storage accounts
Meaning you can have more then 16 items in your storage
Code:
For EVERYONE: update storages set slots = [amount]
For a SINGLE person: update storages where accountid = [id] set slots = [amount]
Spirits and Scales Drops
This will make it so you can get the items for the lvl 110 weapons quest.

Code:
INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8140701, 4000244, 10);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8140701, 4000245, 10);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8140702, 4000244, 10);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8140702, 4000245, 10);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8140703, 4000244, 20);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8140703, 4000245, 20);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8150300, 4000244, 15);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8150300, 4000245, 15);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8150200, 4000244, 15);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8150200, 4000245, 15);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8150301, 4000244, 15);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8150301, 4000245, 15);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8150302, 4000244, 20);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8150302, 4000245, 20);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8150201, 4000244, 20);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8150201, 4000245, 20);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8190000, 4000244, 15);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8190000, 4000245, 15);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8190005, 4000244, 20);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8190005, 4000245, 20);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8190003, 4000244, 15);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8190003, 4000245, 15);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8190004, 4000244, 20);

INSERT INTO monsterdrops
(`monsterid`, `itemid`, `chance`)
VALUES
(8190004, 4000245, 20);
Setting price of one item to X
Code:
update shopitems  where itemid = [id] set price = [amount]
Setting price of a whole shop to X
Code:
update shopitems where shopid = [id] set price = [amount]
Deleting a item from droping from all monsters
Code:
DELETE FROM monsterdrops WHERE itemid = [id]
Negative Mesos In Storage
Code:
UPDATE storages WHERE meso < 0 SET meso = [amount]
Bugged hp/mp Fix
Code:
UPDATE characters WHERE maxhp > 30000 SET maxhp = 30000
UPDATE characters WHERE maxmp > 30000 SET maxmp=30000
Another way to delete inventory
Code:
delete from inventoryitems
Remove pet equips
Incase characters are bugged/glitched
Code:
DELETE FROM `inventoryitems` WHERE `itemid` >= 1812000 AND `itemid` <= 1812010
Code:
DELETE FROM `inventoryitems` WHERE `itemid` >= 1802000 AND `itemid` <= 1802050

---------
:Npcs:
---------
:Shops:
---------
:Maps:
---------
Drops:
---------
:Guides:
How to use Kiki's localhost (VIDEO TUT)
How to use Kiki's localhost
How to stop Leeching websites
How to add AP, HP, MP cap.
How to Set-Up Moogra MS Repack
How to fix Not registered ID/Cant pass Char Select/Chars dispear/Login Stick
Server going Public without Hamachi
All-in-one Guide to making your Odin Private Server (SeanPack)
Getting rid of :8080 when you are behind a router + EXTRA! 1.0
Everything you need for your sever Fixs/NPCs/Tuts/cool extras/
Get rid of hamachi without static IP
Setting up Registrations
Making Registration Website w/ wamp
How to make your own private server (SPECIAL FOR NOOBS!)
How to edit hp/mp on level up for all jobs
How to start your maple private server
Compiling with NetBeans
Setting Up Registrations with Abyss Web Server
Adding more locations to your !goto command
How to PortForward
All about channels. Multi-hosts / number of channels.
How to add NEW NPC in a map
How to fix ArrayIndexOutOfBound
How to change attack range cap of your client...
How To Make A Reg Page *noob Friendly*
Port Forwarding
Vote Popup
Characters Can't Past Character Selection
How to make shops
How to change Server Message/Event Message/World Name
Making items to stats9999 without others having it
Editing Clients with OllyDbg
How to make your server non-hamachi with a dynamic IP
Tempban
How to switch repacks/backup server files
MapleStory Cms/ Registration Page
How to get others within your database
Setting Up - Microsoft Loopback Adapter
How to Patch
How To Enable autoban if its disabled
How To Make A Server - Hamachi
SVN updating
How to edit monster's stats, spawns, and how to add spawn rate!
How to change DISREGARD THAT I......
Raising the level cap
How To Raise AP Cap
Setting Up
How to fix Field 'banreason' doesn't have a default value
How to fix 'Java' is not recognized as a external command
How to run/use DXwnd
Making a launcher with borland delph
How to Remove/Change the Magic Cap in the client.
How To Analize NPC Scripts
---------
:Commands:
---------
:Events/PQ's:

---------

:GM tools/server tools:
---------
:Repacks/Sources:
---------
:Localhost:

---------
:CMS's/Websites:

---------
:CMS & Website Tools/Scripts:
 
Just let hem, at least he is DOING something..
There are noobs that ask all the time for those library's.. >.<
 
Just let hem, at least he is DOING something..
There are noobs that ask all the time for those library's.. >.<

Hahas thanks.
But i really Working Hard on this !
and i find all Postes and and Thread i wan Help all ppl.
i wanna update everyday if i can! :D
 
Status
Not open for further replies.
Back