View Single Post
JoshGomez
Member
Join Date: Apr 2006
Location: Sweden
Old 07-06-2008 , 18:32   Re: CS Items 1.0
Reply With Quote #6

It is little hard to add items and run the plugin if you don't understand sql. You can check the csitems.sql to see the structure.

Code:
INSERT INTO `items` (`id`, `name`, `type`, `armor`, `health`, `magicfind`, `quality`, `speed`, `jump`) VALUES 
(1, 'None', 'None', 0, 0, 0, 0, 0, 0);
You replace the the values in order to create your own item, the id have to be uniqe and after you have to make sql request.

Last edited by JoshGomez; 07-06-2008 at 18:35.
JoshGomez is offline