• 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 Big Vamp

  1. B

    [8.60] The Forgotten Server 0.3.6 (Crying Damson) V8

    As far as the items crash goes, i recompiled it with dev c++ and it fixed it.
  2. B

    Team Agathor team aplication & Hired Hands

    Nickname: Vamp MSN/or other way to contact: Skype: Big_Vamp Age: 23 Position Applying for: Lua Scripter/Source Editor, Can also work with sql and website stuff. Past Experiences:Been coding/programming for around 10 years, been working with open tibia for a number of years References(Optional)...
  3. B

    Team "Tales from Middle-earth" looking for team (Project based on "The Lord of the Rings")

    Alright, werewolf done found out i'm more then just the average scripter.
  4. B

    Team Searching For a team to help create Tibia Kingdoms 9.6

    You have to learn yourself there Werewolf.
  5. B

    Team "Tales from Middle-earth" looking for team (Project based on "The Lord of the Rings")

    I can help you out with, anything scripting/source and website coding. You may already know i am helping werewolf on his server.
  6. B

    Team Searching For a team to help create Tibia Kingdoms 9.6

    Staff Application: Name: Just call me Vamp Age:23 Country:US Language:English Experience: Previously done work with open tibia and am returning after a break away from it. Have done bits of work for more then 100 different ots, some i helped build from the ground up...
  7. B

    SPELLS SPAMMING FOR SOME REASON!!!!!! REP++ for who figures out why??!?!?!?

    function onCastSpell(cid, var) local parameters = { cid = cid, var = var} addEvent(onCastSpell1, 100, parameters) addEvent(onCastSpell2, 300, parameters) addEvent(onCastSpell3, 500, parameters) addEvent(onCastSpell4, 700, parameters) addEvent(onCastSpell5, 900, parameters) addEvent(onCastSpell6...
  8. B

    SPELLS SPAMMING FOR SOME REASON!!!!!! REP++ for who figures out why??!?!?!?

    Your problem is in the lua file to the spell, at the very end in the onCast, it is missing the 'return true' which is causing the spell to not have exhaust or mana cost. Edit if your not sure what i mean, just post the .lua to wizard beam and i will show you.
  9. B

    players dont die and Lots Of errors in consol

    If you would copy/paste the console errors or post a screenshot.
  10. B

    Lua npc problem

    There was just an extra " near the end outside of the </parameters>
  11. B

    [SOLVED] Block Logout from event

    Your character will just sit there online till it dies or the event ends.
  12. B

    Errors In Consol String "loadbuffer"]:3

    Is it happening once, is happening every hour. If you can, can you try to get the exact minutes/seconds between the errors.
  13. B

    Errors In Consol String "loadbuffer"]:3

    Post your globalevents.xml so we can see what all scripts you got running in there.
  14. B

    [SOLVED] Block Logout from event

    Your welcome if you need anything else feel free to hit me up.
  15. B

    [SOLVED] Block Logout from event

    This should help you out. local storage = 0 function onLogout(cid) if (getCreatureStorage(cid, storage) == 1) then doPlayerSendCancel(cid, "You can not log out during this event.") return false end return true end
Back
Top