Reply to Re: Creating D-mods
If you don't have an account, just leave the password field blank.
Assuming you know somewhat about scripting, here are some code lines to get each item.
Items/weapons
-------------
//fists
add_item("item-fst",438,1);
//long sword
add_item("item-sw1",438,7);
//claw sword
add_item("item-sw2",438,20);
//light sword
add_item("item-sw3",438,21);
//bomb
add_item("item-bom",438,3);
//normal bow
add_item("item-b1",438,8);
//heavy bow
add_item("item-b2",438,12);
//fire bow
add_item("item-b3",438,13);
//elixir
add_item("item-eli",438,11);
//herb boots
add_item("item-bt",438,22);
Magic
-----
//fire ball
add_magic("item-fb",437,1);
//hellfire
add_magic("item-sfb",437,2);
//acid rain
add_magic("item-ice",437,5);
Items/weapons
-------------
//fists
add_item("item-fst",438,1);
//long sword
add_item("item-sw1",438,7);
//claw sword
add_item("item-sw2",438,20);
//light sword
add_item("item-sw3",438,21);
//bomb
add_item("item-bom",438,3);
//normal bow
add_item("item-b1",438,8);
//heavy bow
add_item("item-b2",438,12);
//fire bow
add_item("item-b3",438,13);
//elixir
add_item("item-eli",438,11);
//herb boots
add_item("item-bt",438,22);
Magic
-----
//fire ball
add_magic("item-fb",437,1);
//hellfire
add_magic("item-sfb",437,2);
//acid rain
add_magic("item-ice",437,5);