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

  1. Tie

    Windows Uniserver

    Open task manager, go to Processes tab, press "View" -> "Select columns~" -> mark "PID" (it's on the top) -> click "Ok" -> press on "PID" (once or twice) so it looks like this: https://i.imgur.com/s10uo4o.png , then find the pid ^.^ Also, make sure "show processes from all users" is marked...
  2. Tie

    Color Message

    You're welcome :)
  3. Tie

    Color Message

    Then use this: MESSAGE_EVENT_ADVANCE local specialQuests = { [2002] = 10003 -- Battle Axe Quest } local questsExperience = { [10001] = 10000 } function onUse(cid, item, fromPosition, itemEx, toPosition) local storage = specialQuests[item.actionid] if(not storage) then storage =...
  4. Tie

    Color Message

    I guess: MESSAGE_EVENT_DEFAULT So: local specialQuests = { [2002] = 10003 -- Battle Axe Quest } local questsExperience = { [10001] = 10000 } function onUse(cid, item, fromPosition, itemEx, toPosition) local storage = specialQuests[item.actionid] if(not storage) then...
  5. Tie

    Solved Repeat executing function

    Thanks a lot! :) Thread can be closed
  6. Tie

    Solved Repeat executing function

    Hello I'm making a talkaction and I want to to execute 1 function 10~ times, and I want it to have delay of 2 seconds between each execution What's the best way to do it? I tried this but failed: local x = 1 while x < 10 do addEvent(doSomething(), 2000) x=x+1 end Thanks
  7. Tie

    Close + Shutdown

    Use this: Like: <globalevent name="shutdown" time="05:00" event="script" value="save.lua"/> And in save.lua function onThink() doSaveServer() doBroadcastMessage("Server saved") return true end
  8. Tie

    Compiling Mvs 2012

    thanks for the reply any other way to compile it to x64 or only downloading 2010? :/
  9. Tie

    Compiling Mvs 2012

    Hello does anyone know how to compile tfs in microsoft visual studio 2012? i have tried to follow this OtLand - How to compile TFS for Windows using Microsoft Visual Studio 2010 ? but it first gave me a warning (this) and i updated it, after that, when i tried to build it, i got this...
  10. Tie

    Solved Tfs

    Thanks a lot, I have sent it to my friend and he says it works! Rep++ for you Yaneek :)
  11. Tie

    Solved Tfs

    Hello this is a "noob "question and u will probably tell me "use search" so I just wanted to say I already did that my TFS is not working and I think I know the problem it looks like I have wrong version of it can u give me link to TFS 0.3.6pl1 (.exe) or source (but tell me how to compile and...
Back
Top