• 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. ConAn Edujawa

    doPlayerSendTextMessage

    compile done but in game don't work (don't show items ml)
  2. ConAn Edujawa

    doPlayerSendTextMessage

    not work always show me 0 and ring have to add 1 ml
  3. ConAn Edujawa

    doPlayerSendTextMessage

    how i can use getItemInfo for magiclevel its not add in source
  4. ConAn Edujawa

    doPlayerSendTextMessage

    wow work good but i want function like this function getDef(cid) local defense = 0 for i = CONST_SLOT_RIGHT,CONST_SLOT_LEFT do if getPlayerSlotItem(cid, i).uid > 0 then if getItemInfo(getPlayerSlotItem(cid,i).itemid).defense then defense = defense +...
  5. ConAn Edujawa

    doPlayerSendTextMessage

    work but i want ask on something how i can check manaGain player have in items slots and i want its work like power: def x , arm x not collection number
  6. ConAn Edujawa

    doPlayerSendTextMessage

    this work fine but how i can add 2 function in one line like this ["Power"] = getDef,getArm
  7. ConAn Edujawa

    abilities.speed

    if its right why don't add setField(L, "healthGain", item->healthGain); with setField(L, "healthGain", item->abilities.healthGain); like speed but its happen with speed only
  8. ConAn Edujawa

    doPlayerSendTextMessage

    yes but that show all function like this Armor: 0 Defense: 0 Speed: 0 Attack: 0 i need if speed or def or armor >= 1 show in msg
  9. ConAn Edujawa

    abilities.speed

    hello guy we have in 0.4 setField(L, "speed", item->abilities.speed); setField(L, "speed", item->speed); What is the difference between them Which one can I use when I want to add a speed boost for items
  10. ConAn Edujawa

    doPlayerSendTextMessage

    work fine how i can make something like this with function like this function getDef(cid) local defense = 0 for i = CONST_SLOT_RIGHT,CONST_SLOT_LEFT do if getPlayerSlotItem(cid, i).uid > 0 then if getItemInfo(getPlayerSlotItem(cid,i).itemid).defense then defense =...
  11. ConAn Edujawa

    doPlayerSendTextMessage

    hello guys i want send text show only storage +1 local power1= getCreatureStorage(cid, 16000) local power2= getCreatureStorage(cid, 16001) local power3= getCreatureStorage(cid, 16002) local power4= getCreatureStorage(cid, 16004) need msg come in storage >=1 example if player have power1 = 1 get...
  12. ConAn Edujawa

    random items stats

    SET GLOBAL max_allowed_packet = 16776192; :D
  13. ConAn Edujawa

    random items stats

    thx bro work fine but i have this in consol how i can fix it [19:54:47.197] > WARNING: max_allowed_packet might be set too low for binary map storage. [19:54:47.197] Use the following query to raise max_allow_packet: SET GLOBAL max_allowed_packet = 16776192;
  14. ConAn Edujawa

    random items stats

    from this line local random = math.ceil(math.random(100000) / ext) or this if( math.random(100000) <= v.chance )then
  15. ConAn Edujawa

    random items stats

    how i can change the chance in this mod for 100 not 100000
  16. ConAn Edujawa

    random items stats

    in this mod i found this code local random = math.ceil(math.random(100000) / ext) anyone can explain to me what this code mean 0.4 https://otland.net/threads/mod-random-item-stats.130295/
  17. ConAn Edujawa

    C++ 3884 w cast

    no have exp in 1.3
  18. ConAn Edujawa

    C++ 3884 w cast

    anyone have 3884 w cast work in luinx? tibia 8.60
  19. ConAn Edujawa

    check actionid

    thx man
  20. ConAn Edujawa

    check actionid

    yes its what i want but need small edit in this scrip add this linein config local config = { destination = {x = 1000, y = 1000, z = 7}, chance = 10, actionId = 3214, item = {8300, 10, 8301, 3, 8302, 5}, itemId = 9020 } if chance not work remove random items...
Back
Top