04.09.2014, 09:32
If you want to add string size, use the enum method i explained. that will help.
just add MAX_ITEMS in []
Example:
just add MAX_ITEMS in []
Example:
PHP код:
enum itemInfo { // enums used for the items
iname[256]
};
new ItemName[MAX_ITEMS][itemInfo] = {
{"Wood"},
{"Stone"},
{"Steel"} //add your items name here
};