• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[MOD] Items

Yes??
Code:
			else if(!xmlStrcmp(p->name, (const xmlChar*)"item"))
			{
				if(readXMLInteger(p, "id", intValue))
					Item::items.parseItemNode(p, intValue); //duplicates checking isn't necessary here
			}
			if(!xmlStrcmp(p->name, (const xmlChar*)"description") || !xmlStrcmp(p->name, (const xmlChar*)"info"))
			{
				if(parseXMLContentString(p->children, strValue))
				{
					replaceString(strValue, "\t", "");
					mod.description = strValue;
				}
			}
 
Ahh, rox, I don't know why i didn't check the source :peace:. Mod is best thing ever. rep += 1.
Mods are an useless bloat feature that are supposed to prevent the data folder from being messy.
But that's just me, most people find this unnecessary feature useful.
 
What? o_O i mean using mod, you update your server to newest version in 1 sec (copy/paste mod folder), and you shouldn't care if some actions were modified/added. is bestek =D
 
Back
Top