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

Recent content by scorpionfight

  1. S

    OTClient reading storage value and how add sound effects?

    I'm interested in this, maybe they can help me. I wonder, for example, how the OTClient receives information from the player level? On my server I created something like a new level and would like to present in the OTClient. But still do not understand how OTClient receives these informations...
  2. S

    Project X Summ - Cyko - Shawak - XPRIMEX - Mindrage Production!

    Good to see a project like this, I'm working on a similar project already for some time. Apparently your project is being well received by the members of the forum, that's cool. Well, good luck on your project.
  3. S

    How to AddItem to specific slot?

    If you wanna only add new item to SLOT x, you can use the function doPlayerAddItem(cid, itemid[, count/subtype = 1[, canDropOnMap = true[, slot = 0]]]). Try this: doPlayerAddItem(cid, 2160, 1, true, SLOT_LEFT) I'm not sure about that. =S
  4. S

    Peroxide's Mapping Thread

    Very beautiful your map, good luck on your new project.
  5. S

    Solved.

    Solved.
  6. S

    Bug in compiling otclient Windows

    https://github.com/edubart/otclient/archive/master.zip
  7. S

    Bug in compiling otclient Windows

    Where's the sources? '-' You need download the source code for compile the client.
  8. S

    Solved.

    Solved.
  9. S

    Trying to compile. Solved =D

    Solved. =D
  10. S

    Solved Storage script

    Try this: function onUse(cid, item, frompos, item2, topos) if item.uid == 6124 and getPlayerStorageValue(cid, 5184) <= 0 then setPlayerStorageValue(cid, 5184, 1) doSendMagicEffect(cid,12) doPlayerSendTextMessage(cid,22,"You found some strange power.") elseif...
  11. S

    Demetri World [RPG]

    Looks very nice. I loved your maps. ;D So, I think in you LOGO is written wrong the project name, on logo is DEMETERI WORLD and the project name is DEMETRI WORLD. =P
  12. S

    Lua Multiple arrays inside another array...

    It no give error, but not working too. I using this array in a code like that( \/ ), but I think is the wrong way to use. array1 = {2400,2401} array2 = {2402,2403} array3 = {2404,2404} multiple_array = {array1 = {}, array2 = {}, array3 = {}} if isInArray(multiple_array, item.itemid) then...
  13. S

    Lua Multiple arrays inside another array...

    How to create multiple arrays inside another array? Like: array1 = x array2 = y array3 = z multiple_array = array1, array2, array3 Its possible? Thanks!
  14. S

    Solved Give Points in DB.

    Solved thanks.
  15. S

    Solved Give Points in DB.

    Solved, thanks.
Back
Top