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!

**Library** (Find releases, fixes, guides & more) **Updated Occasionally)**

Status
Not open for further replies.
Λκαяυz føяeνeя
Member
Joined
Jun 28, 2008
Messages
1,950
Reaction score
73
Click here for a list of Commands and id's!
------------------
Latest update: Back to updating! - POST!
------------------
: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)

------------------
Orange --v55*
Purple --v56*
Red--v59*
Blue--v60*
Green--v61*
Cyan--v62*
Pink--v63*
Black--v74*

------------------
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:
[B][SIZE=4][SIZE=2] Update accounts set loggedin = 0[/SIZE][/SIZE][/B]
Added/Setting nx:
Code:
[B][SIZE=4][SIZE=2] To ADD: update accounts set nxcash = nxcash + [amount][/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] To SET: update accounts set nxcash = [amount][/SIZE][/SIZE][/B]
Setting all shop prices:
Code:
[B][SIZE=4][SIZE=2] update shopitems set price = [amount][/SIZE][/SIZE][/B]
Removing an item sold in all shops
Code:
DELETE FROM shopitems WHERE itemid = [id]
Setting an account as a GM:

Code:
[B][SIZE=4][SIZE=2] update accounts where accountid = [id you want to be gm] set gm = 1[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] and[/SIZE][/SIZE][/B]

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

[B][SIZE=4][SIZE=2] Then[/SIZE][/SIZE][/B]

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

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (9300098, 5251003,2000);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (93000*** 5251003,2000);[/SIZE][/SIZE][/B]

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

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8140701, 4000245, 10);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8140702, 4000244, 10);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8140702, 4000245, 10);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8140703, 4000244, 20);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8140703, 4000245, 20);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8150300, 4000244, 15);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8150300, 4000245, 15);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8150200, 4000244, 15);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8150200, 4000245, 15);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8150301, 4000244, 15);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8150301, 4000245, 15);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8150302, 4000244, 20);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8150302, 4000245, 20);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8150201, 4000244, 20);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8150201, 4000245, 20);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8190000, 4000244, 15);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8190000, 4000245, 15);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8190005, 4000244, 20);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8190005, 4000245, 20);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8190003, 4000244, 15);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8190003, 4000245, 15);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8190004, 4000244, 20);[/SIZE][/SIZE][/B]

[B][SIZE=4][SIZE=2] INSERT INTO monsterdrops[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (`monsterid`, `itemid`, `chance`)[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] VALUES[/SIZE][/SIZE][/B]
[B][SIZE=4][SIZE=2] (8190004, 4000245, 20);[/SIZE][/SIZE][/B]
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
Code:
[B][SIZE=4][SIZE=2] UPDATE characters WHERE maxmp > 30000 SET maxmp=30000[/SIZE][/SIZE][/B]
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 Make a Server Launcher in Java with vote and etc
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:

[Thread was half destroyed to due Thread limit, fixing atm!]
 
Last edited:
Experienced Elementalist
Joined
Jul 8, 2008
Messages
246
Reaction score
0
Re: [Release] Library (Find releases, fixes, guides & more)

Good work Luke x]
Very useful
 
Experienced Elementalist
Joined
May 19, 2008
Messages
281
Reaction score
0
Re: [Release] Library (Find releases, fixes, guides & more)

good job !
 
Initiate Mage
Joined
Jul 15, 2008
Messages
90
Reaction score
0
Re: [Release] Library (Find releases, fixes, guides & more)

GJ, more organized
 
Initiate Mage
Joined
Jul 15, 2008
Messages
90
Reaction score
0
Re: [Release] Library (Find releases, fixes, guides & more)

Do you think you can find 4 Nanas selling stuff like Nana(H) for bow man...etc..?
 
Initiate Mage
Joined
Jul 15, 2008
Messages
90
Reaction score
0
Re: **Library** (Find releases, fixes, guides & more)

ok, thnx man! keep up the good work
 
Junior Spellweaver
Joined
Jun 22, 2008
Messages
127
Reaction score
0
Re: **Library** (Find releases, fixes, guides & more)

Grats on Sticky! xD Thanx for the Library
 
Legendary Battlemage
Joined
Aug 1, 2008
Messages
635
Reaction score
4
Re: **Library** (Find releases, fixes, guides & more)

nice, u should put more stuff!
 
Initiate Mage
Joined
Jul 15, 2008
Messages
90
Reaction score
0
Re: **Library** (Find releases, fixes, guides & more)

this is new, there is lots more to add! =]
 
Legendary Battlemage
Joined
Aug 1, 2008
Messages
635
Reaction score
4
Re: **Library** (Find releases, fixes, guides & more)

I put that in,
what ideas have you got?

i mean like when ppl release new stuff edit this thread cuz other nerver edit their threads...
 
Mythic Archon
Member
Joined
Jul 23, 2008
Messages
796
Reaction score
56
Re: **Library** (Find releases, fixes, guides & more)

Try to separate the odin and titan stuff
 
Status
Not open for further replies.
Back
Top