• 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!

OTClient Bestiary tutorial for OTServBR-Global 12x?

Opatulek

New Member
Joined
Apr 25, 2021
Messages
22
Reaction score
2
Hello! can't find any tutorial for editing bestiary in OTServBR-Global 12x, I would like to add new monsters to it, does anyone know how to do that? I will be grateful if someone helps me.
 
Hello! can't find any tutorial for editing bestiary in OTServBR-Global 12x, I would like to add new monsters to it, does anyone know how to do that? I will be grateful if someone helps me.


add this to monster file that u want to add. (sample code)
Lua:
ocal mType = Game.createMonsterType("Rotworm")
local monster = {}

monster.description = "a rotworm"
monster.experience = 40
monster.outfit = {
    lookType = 26,
    lookHead = 0,
    lookBody = 0,
    lookLegs = 0,
    lookFeet = 0,
    lookAddons = 0,
    lookMount = 0
}

monster.raceId = 26
monster.Bestiary = {
    class = "Vermin",
    race = BESTY_RACE_VERMIN,
    toKill = 500,
    FirstUnlock = 25,
    SecondUnlock = 250,
    CharmsPoints = 15,
    Stars = 2,
    Occurrence = 0,
    Locations = "Almost everywhere, like Ancient Temple, Vandura, Folda dungeon, Fibula Dungeon, \z
        caves connecting Edron and Cormaya, Venore Swamp Troll cave, Thais Troll cave, Ferngrims Gate, \z
        Dwarf Mines, Hellgate, below the graves in eastern Rookgaard, spider cave in western Rookgaard, \z
        cave northeast of Ab'Dendriel, Darashia Rotworm Caves, Liberty Bay, Fenrock, \z
        below Green Claw Swamp and some other places."
    }

This :
Code:
monster.Bestiary = {

    class = "Vermin",

    race = BESTY_RACE_VERMIN,

    toKill = 500,

    FirstUnlock = 25,

    SecondUnlock = 250,

    CharmsPoints = 15,

    Stars = 2,

    Occurrence = 0,

    Locations = "Almost everywhere, like Ancient Temple, Vandura, Folda dungeon, Fibula Dungeon, \z

        caves connecting Edron and Cormaya, Venore Swamp Troll cave, Thais Troll cave, Ferngrims Gate, \z

        Dwarf Mines, Hellgate, below the graves in eastern Rookgaard, spider cave in western Rookgaard, \z

        cave northeast of Ab'Dendriel, Darashia Rotworm Caves, Liberty Bay, Fenrock, \z

        below Green Claw Swamp and some other places."

    }[
 
Back
Top