• 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

    [TFS 0.3.6] My own quest system script

    Chojrak my script is shorter and in my solved script(it isn't here) there you can also set custom storage value, in your script uid = storage ? :P
  2. wesoly136

    Need script easy!

    Ehh.. But Quas gave you a script for door...? function onUse(cid, item, fromPosition, itemEx, toPosition) local position = {x=xxx,y=yyy,z=z} if isPremium(cid) then doTeleportThing(cid,position,true) else doPlayerSendCancel(cid,"You need premium to enter") return 0 end return true end or maybe...
  3. wesoly136

    Need script easy!

    something like this: function onUse(cid, item, fromPosition, itemEx, toPosition) local storage = 12345 local position = {x=xxx,y=yyy,z=z} if getPlayerStorage(cid, 12345) >= 1 then doTeleportThing(cid,position,true) else doPlayerSendCancel(cid,"You need vip to enter") return false end...
  4. wesoly136

    [TFS 0.3.6] My own quest system script

    Oh sux, the first numbers are not storage, but chest unique id... <LOL> :/ Is it any more simple/short way to do quests ?
  5. wesoly136

    [TFS 0.3.6] My own quest system script

    Oh, it was my mistake, I tried to do it for all ways what I know :P Effect: Script gives me storage for all these chests, it is something about 8000, I thnik it was 2160+2345+2344 :/ So when I take one prize I can't take other
  6. wesoly136

    Need script easy!

    UP Whatever you want but check to not duplicate ids in your xmls
  7. wesoly136

    [TFS 0.3.6]Empty guild

    Www but ingame is possible too I think(turned on) and someone may used this way to create guild :S
  8. wesoly136

    [TFS 0.3.6]Empty guild

    Hi! I have a fucking problem again, I had it in 0.2.7, but after distro updating it was solved and I have this problem again. When I create guild, I can manage it for 1-2 minutes, and then I get kicked all invites canceled and I can't do anything with it... Any ideaS ?:/ EDIT I think it...
  9. wesoly136

    If too much money then many problems :/

    Bump :s
  10. wesoly136

    [TFS 0.3.6] My own quest system script

    Hi! I tried to do my own script for quests as shortly as I can and I have a problem function onUse(cid, item, frompos, item2, topos) local h = { [2160] = {2160, 2}, [2345] = {2345, 1}, [2344] = {2344, 1} } local id = h[item.uid] if getPlayerStorageValue(cid, id) ~= 1 then...
  11. wesoly136

    Equipment Upgrade Token

    function onUse(cid, item, fromPosition, itemEx, toPosition) local needitem = 2515 local needitem2 = 2515 local cfg = { [2463] = {2472}, [2457] = {2471} } local id = cfg[itemEx.itemid] if getPlayerItemCount(cid, needitem) >= 1 and getPlayerItemCount(cid, needitem2) >= 1 then if id then...
  12. wesoly136

    Sms Shop Problem

    xampp/htdocs/item_images/HowToAddImages.txt :P Just paste image there and name it its id of the item from database>z_shop_offer. If want .gif images go to htdocs/shopsystem.php and ctrl+f 'jpg' and change all of it to 'gif' then paste .gif images :D
  13. wesoly136

    WalkThroughable Players

    http://otland.net/f132/walk-through-player-87984/ http://otland.net/f82/walk-thru-non-pvp-players-73037/ ? I remember that there were many threads about this ...
  14. wesoly136

    Equipment Upgrade Token

    function onUse(cid, item, frompos, item2, topos) local plateid = local mpaid = if doPlayerRemoveItem(cid, plateid,1) == TRUE then doPlayerAddItem(cid, mpaid, 1) doSendMagicEffect(getPlayerPosition(cid),12) doRemoveItem(item.uid,1) else doPlayerSendCancel(cid,"You don't have plate...
  15. wesoly136

    Sms Shop Problem

    Did you try add it like item, but with count 100? :P
  16. wesoly136

    Vocation quest, help me !

    Skrypty są oddzielane liniami, widzisz w nich bałagan bo pewnie otwierasz w notatniku... Wyślij mi anihi na PW... English No have idea what's up :/
  17. wesoly136

    If too much money then many problems :/

    Ehh, tested :D Doesn't work :/(works the same like before) Any ideas ? :P
  18. wesoly136

    Vocation quest, help me !

    Polish Taa, ale go trochę przerobiłem, weź wpisz id itemow ręcznie a nie swordID itp.. English -Nothing important :P-
  19. wesoly136

    [0.3.6] Marriage system

    Hmm, I don't remember that thread - will try later :P
  20. wesoly136

    Tfs 0.3.6 some scripts.

    How can it works if it is onLogin?
Back
Top