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

[7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

@Ezzz @Nottinghster

I click at door and see :

16:53 You see a closed door.
It belongs to house 'Theater Avenue 7, Flat 02'.
Nobody owns this house.

how to make teeth did not show "You see a closed door." ?

only to see

It belongs to house 'Theater Avenue 7, Flat 02'.
Nobody owns this house.
 
how did you solve the manafluid ?

Code:
    <item id="20001" name="water" fluidClient="1"/>
    <item id="20002" name="blood" fluidClient="2"/>
    <item id="20003" name="beer" fluidClient="3"/>
    <item id="20004" name="slime" fluidClient="4"/>
    <item id="20005" name="lemonade" fluidClient="5"/>
    <item id="20006" name="milk" fluidClient="6"/>
    <item id="20007" name="manafluid" fluidClient="7"/>
    <item id="20010" name="lifefluid" fluidClient="8"/>
    <item id="20011" name="oil" fluidClient="9"/>
    <item id="20013" name="urine" fluidClient="10"/>
    <item id="20014" name="coconut milk" fluidClient="11"/>
    <item id="20015" name="wine" fluidClient="12"/>
    <item id="20019" name="mud" fluidClient="13"/>
    <item id="20021" name="fruit juice" fluidClient="14"/>
    <item id="20027" name="rum" fluidClient="15"/>
    <item id="20035" name="tea" fluidClient="16"/>
    <item id="20036" name="mead" fluidClient="17"/>

and the error in the server is gone but now i cant get with /i 7 or 20007 not get a manafluid?

did i forget somting?
 
@Nottinghster
@Ezzz
I need your help.. The players can log out with pk (skull) with OTClient and thanks to this I lost all online players. How Can I Add a personal RSA key?
 
i cant use command /B and /bc ;/
Error in console :

Lua Script Error: [TalkAction Interface]
data/talkactions/scripts/broadcast.lua:eek:nSay

data/talkactions/scripts/broadcast.lua:4: attempt to call global 'getPlayerGroupId' (a nil value)
stack traceback:
data/talkactions/scripts/broadcast.lua:4: in function
 
i cant use command /B and /bc ;/
Error in console :

Lua Script Error: [TalkAction Interface]
data/talkactions/scripts/broadcast.lua:eek:nSay

data/talkactions/scripts/broadcast.lua:4: attempt to call global 'getPlayerGroupId' (a nil value)
stack traceback:
data/talkactions/scripts/broadcast.lua:4: in function
"getPlayerGroupId" doesn't exist.

You can't copy paste scripts from other servers without errors. :p
 
Code:
    //load RSA key
    std::cout << ":: Loading RSA key..." << std::flush;
    const char* p("14299623962416399520070177382898895550795403345466153217470516082934737582776038882967213386204600674145392845853859217990626450972452084065728686565928113");
    const char* q("7630979195970404721891201847792002125535401292779123937207447574596692788513647179235335529307251350570728407373705564708871762033017096809910315212884101");
    const char* d("46730330223584118622160180015036832148732986808519344675210555262940258739805766860224610646919605860206328024326703361630109888417839241959507572247284807035235569619173792292786907845791904955103601652822519121908367187885509270025388641700821735345222087940578381210879116823013776808975766851829020659073");
    g_RSA.setKey(p, q, d);
 
Back
Top