• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Znote acc - set starting items

I think that you can't set first items on znote.
You need to create one MOD on your server, that will check if is the first login of the player and will give him first items.
Try this, on otserv folder/mods, create firstitems.xml, and put this there:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="First Items" version="1.0" author="The Forgotten Server" contact="otland.net" enabled="yes">
    <config name="firstitems_config"><![CDATA[
        config = {
            storage = 30001,
            items = {2050, 2382}
        }
    ]]></config>
    <event type="login" name="FirstItems" event="buffer"><![CDATA[
        domodlib('firstitems_config')
        if(getPlayerStorageValue(cid, config.storage) > 0) then
            return
        end

        for _, id in ipairs(config.items) do
            doPlayerAddItem(cid, id, 1)
        end

        if(getPlayerSex(cid) == PLAYERSEX_FEMALE) then
            doPlayerAddItem(cid, 2651, 1)
        else
            doPlayerAddItem(cid, 2650, 1)
        end

        doAddContainerItem(doPlayerAddItem(cid, 1987, 1), 2674, 1)
        setPlayerStorageValue(cid, config.storage, 1)
    ]]></event>
</mod>
 
Back
Top