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

  1. H

    [Archived] "[Quick Showoff] Post your latest maps"

    mt loco mano keep com o bom trabalho xd doev s
  2. H

    [ReQUEST] NEED SCRIPT! HELP WITH US!

    doPlayerAddItem(uid, reward, amount) -> doPlayerAddItem(cid, reward, amount) local name = getCreatureName(cid) - > don't needed local reward = "2160" -> local reward = 2160 local amount = "5" -> local amount = 5 why did u use strings? -.-
  3. H

    Fix Globalevent!

    Use getPlayersOnline() function instead of getOnlinePlayers()
  4. H

    Effect on one of the monsters rep++

    Use the function getSpectators
  5. H

    Neon's latest mapping works!

    Neon, make a video when you're mapping and show us ur magic '-'
  6. H

    CreatureEvent Promotion_OnAdvance [worth to see it]

    Why did you put _ in front of variables? _SETUP..
  7. H

    Kuzyn Mapping.

    Kuzyn? HEUHAUEHAUEHU rep++
  8. H

    [Archived] "[Quick Showoff] Post your latest maps"

    Please post a pic, I'm needin' inspiration D:
  9. H

    Lua Special Teleport!

    if item.uid == 4500 then You don't needs it.
  10. H

    Neon's latest mapping works!

    Looks like a draw made in pentool
  11. H

    Action Runes Lever v1.3

    Shawak, Sherlok & Renusek Really need 3 persons to make this script? -.-
  12. H

    [Request]

    We can use the two types: print "a" print("a") All them'll work correctly
  13. H

    [Request] Exp Scroll

    local config = {} --// Config config.exp = 30 config.msg = "You gained "..config.exp.." experience points." --// Config function onUse(cid, item, frompos, item2, topos) doPlayerAddExperience(cid, config.exp) doPlayerSendTextMessage(cid, 25, config.msg) doRemoveItem(item.uid, 1) return true end
Back
Top