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

Search results

  1. silveralol

    Lua how use string to get different informations

    atm function onUse(player, item, fromPosition, target, toPosition, isHotkey) local name, level, health, maxHealth, lootBonus = "", 1, 0, 0, 0 -- Default values local myStringData = item:getAttribute(ITEM_ATTRIBUTE_DESCRIPTION) local myDataTable = myStringData:split(", ") local...
  2. silveralol

    Lua how use string to get different informations

    is just a pet system, that I'll use a string to get the informations of the pet, so I can't use predefined variables. it print: Name: nil Level: 1 Health: 0 MaxHealth: 0 Bonus: 0. i'm trying with another way, some friend help me with vector = {Rat, 30, 500, 1000, 40} for x = 1, 4, 1 do...
  3. silveralol

    Lua how use string to get different informations

    is above... I just not write on the "code tag" but the string declaration is: local string = "rat, 30, 100, 100, 40"
  4. silveralol

    Lua how use string to get different informations

    hello folks, I'm trying make something, so with a string I want get the informations for the stuff string = rat, 40, 100, 100, 40 where: rat = name 40 = lvl 100 = healthnow 100 = maxhealth 40 = loot bonus how I can get these informations with that string ? I try with this for exemple: local...
  5. silveralol

    Lua Help, BOSS Respaw every 2 Hours.

    my bad, the "o" was an intruder, but any noob can see that and remove it D:
  6. silveralol

    C++ trouble with some ITEM_ATTRIBUTE

    hello folks, I'm trying figure out how solve my problem I'm trying to create a pet system by c++ using ITEM_ATTRIBUTES for each config of the pet system I've creaated an attribute they are: ITEM_ATTRIBUTE_PETLEVEL ITEM_ATTRIBUTE_PETNAME ITEM_ATTRIBUTE_HEALTH ITEM_ATTRIBUTE_MAXHEALTH...
  7. silveralol

    Lua Help, BOSS Respaw every 2 Hours.

    @lokolokio as I try comment that you can use the first or the second if statement
  8. silveralol

    Lua Help, BOSS Respaw every 2 Hours.

    using addEvent without check if the parameter exist some times cause crash in the .exe also, why create variable creature without relation with the monster? function killmonster(creature) if creature ~= nil then creature:remove() end o-- or you can try use it if...
  9. silveralol

    2rec//Mapping thread

    could make a video if the entire cave to we took all the details ? holy shit that cave, i want try make one like it
  10. silveralol

    2rec//Mapping thread

    I want to play, put it online with version 10.98 :D
  11. silveralol

    [Germany] [10.98] - Evolunia

    post the map
  12. silveralol

    Andreew's Showoff.

    i want play
  13. silveralol

    help in modifying for tfs 1.2?

    oh, i did not know that, thank you!
  14. silveralol

    help in modifying for tfs 1.2?

    creature:say("EXIT", TALKTYPE_MONSTER_SAY, true, creature:getId(), Position({x = 318, y = 394, z = 11})) Position({x = 318, y = 394, z = 11}) are wrong bro or you use Position(318, 394, 11) or {x = 318, y = 394, z = 11} also... you can edit this creature:say("EXIT", TALKTYPE_MONSTER_SAY...
  15. silveralol

    help in modifying for tfs 1.2?

    doCreatureSay(cid, "Entering the " .. entry.name .. ".", TALKTYPE_ORANGE_1, true, cid) doCreatureSay(cid, "Entering the " .. entry.name .. ".", TALKTYPE_MONSTER_SAY, true, cid) and have TALKTYPE_ORANGE_1 change to TALKTYPE_MONSTER_SAY
  16. silveralol

    Lua [TFS 1.2] OOP Classes

    do you can show me an exemple of the usage of this ? i'm trying to understand, but without success thanks
  17. silveralol

    [10.98] Some map

    if you use 10.97 you can just import this maps to your map, but 10.77 is not possible, cuz have some items with protocol above of 10.90
  18. silveralol

    Scripter Need scripter to make 3 scripts

    I have ferumbras ascendant quest complete, all monster IA etc send me a pm with the offer
  19. silveralol

    Eterna Mapping - Leo's Thread

    when will launch a server to us ? we want play haha
Back
Top