Page 1 of 1

/Blank Command

PostPosted: Tue May 01, 2012 11:22 pm
by stephenxpimentel
Hey guys, i made this command for my server, and it helped me speed up a ton of item creating.

Usage
/blank <eObjectType> <id_nb you want> <weapon hand (1h,2h,offhand)>
/blank <eObjectType> <id_nb you want> <item slot (eInventorySlot ID)>

this will create a pre-defined item of your choice in your inventory, all you have to do is set its model, stats, and procs/charges if required. The item will be level 50, and its AF/DPS etc. will be standard. (Cloth with 50AF 0 ABS).

Hope it can help people out :)
Blank.cs
(8.23 KiB) Downloaded 186 times

Re: /Blank Command

PostPosted: Wed May 02, 2012 10:59 am
by Graveen
Neato Stephen, a real usefull command (but not really core compliant).

Re: /Blank Command

PostPosted: Wed May 02, 2012 11:29 am
by Tolakram
m_item = new ItemTemplate();
m_item.AllowAdd = true;

So is the goal to add item templates to the db? If so, then perhaps this belongs in the /item command to help ease the creation of items? /item new weapon /item new armor ???

Re: /Blank Command

PostPosted: Wed May 02, 2012 8:12 pm
by stephenxpimentel
m_item = new ItemTemplate();
m_item.AllowAdd = true;

So is the goal to add item templates to the db? If so, then perhaps this belongs in the /item command to help ease the creation of items? /item new weapon /item new armor ???
Yes you're correct Tola, exactly the purpose, at the time i just didn't want to mess with the command. :) If you want i can add it to the item command, it will take some time tho.