• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. wesoly136

    spell request

    Yes, but how do you know that your ots will be so good? To make such good ots its good to have few people - which would do many jobs and know well their professions, how to write scripts like this, etc. - else you have to be good in everything (scripts and other jobs) and I can't see that you...
  2. wesoly136

    spell request

    I can send you my server, pass to database and whole ots but the same 'payment' you can get downloading 0.3.6 distro from this forum -,-
  3. wesoly136

    [mysql] Query divide lvls of all players

    Will test :PP Thanks, works awesome Summ Cant rep :( Cybershot repped :P
  4. wesoly136

    [mysql] Query divide lvls of all players

    I need a query that divide lvls of all players like there are players with lvls: I. 100 II. 150 III. 200 and it will divide into 5 so that players will have lvls: I. 20 II. 30 III. 40 Hope you understand my 'English maths' :P
  5. wesoly136

    HELP me here pls

    Maybe change 25 to 19 or MESSAGE_STATUS_CONSOLE_BLUE
  6. wesoly136

    Advanced NPC ? Any good scripter, check it !

    PL Było od razu napisać, nie mam czasu pisać teraz drugiego English I can't help sorry
  7. wesoly136

    Advanced NPC ? Any good scripter, check it !

    First local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function...
  8. wesoly136

    [onDeath]

    I think that the problem is stackpos, you have 255, change it to 1
  9. wesoly136

    Strawberry EXP

    if item.itemid == 2680 then doCreatureSay(cid,"100 EXP GRANTED!", TALKTYPE_ORANGE_1) doRemoveItem(item.uid, 1) doPlayerAddExperience(cid,100) return true end
  10. wesoly136

    [0.3.6] Need PVP Arena!

    I know I just said that this is solved...
  11. wesoly136

    Strawberry EXP

    Go to data/actions/scripts/other/food.lua and under if((getPlayerFood(cid) + food[1]) >= 400) then doPlayerSendCancel(cid, "You are full.") return true end add this if item.itemid == 2680 then doPlayerFeed(cid, food[1] * 4) doCreatureSay(cid, food[2], TALKTYPE_ORANGE_1)...
  12. wesoly136

    kill player get ''x'' item

    1.Did you paste all lines which I gave you? 2. Did you complete line 'doPlayerAddItem'? 3. Any errors ?
  13. wesoly136

    kill player get ''x'' item

    All registers write under 'function onLogin', and over 'end'
  14. wesoly136

    [0.3.6] Need PVP Arena!

    Ok, solved with PVP Zone tool
  15. wesoly136

    kill player get ''x'' item

    Yes :D
  16. wesoly136

    kill player get ''x'' item

    You are doing something wrong, its works for me. What TFS are you using ?
  17. wesoly136

    [0.3.6] Need PVP Arena!

    I just died, logged in temple with lower lvl, without BP, say what is the function in map editor :S
  18. wesoly136

    [0.3.6] Need PVP Arena!

    Ook, works but not as pvp arena it only teleport us to arena :/
  19. wesoly136

    [0.3.6] Need PVP Arena!

    Teleportpos is pos where players are teleported after pulling the switch, and what is the oldposition?
  20. wesoly136

    kill player get ''x'' item

    I kill you and I get item? creaturescripts/scripts/killreward.lua function onKill(cid, target) if not isPlayer(target) or not isPlayer(cid) then return true end doPlayerAddItem(cid, id, count) -- edit here return TRUE end creaturescripts/creaturescripts.xml <event type="kill" name="killreward"...
Back
Top