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

  1. F

    RoXoR Server 8.50 (v0.3) (TFS v0.2.5)

    You'll find that message in data/npc/scripts/donater.lua, in there you can change it for anything you like.
  2. F

    House Level

    Not that I can see, you could try adding levelToBuyHouse = in your config see if it works
  3. F

    Easy to fix! Geisor(spelling?) acc problems when player login?

    In your server config.lua find the line that has url = "http://otland.net" and replace it with the url of your site. :)
  4. F

    You cannot see the Login Button nor use it!

    Look in your config.lua under status change the url = "http://otland.net/" to your own url, url = "http://silvercrest.hopto.org/".This will only solve your redirect issue not the other ones you are having.
  5. F

    Spell mana / exhaust problem !

    at the bottom of your spell lua add return true like this.function onCastSpell(cid, var) local parameters = { cid = cid, var = var} addEvent(onCastSpell1, 0, parameters) addEvent(onCastSpell2, 100, parameters) addEvent(onCastSpell3, 200, parameters) addEvent(onCastSpell4, 250, parameters)...
  6. F

    Linux CMD: Screen

    777 means everything is readable / writeable / executable 775 means its not writeable by the public and 755 means its not writeable by groups only the owner which you are if your root, someone please correct me if I'm wrong. Its all up to you but 755 should be enough to run your server I know...
  7. F

    Linux CMD: Screen

    have you tried chmod the whole folder not just the folder itself or chmod just that file to 755. if you dont understand permissions and im guessing your using a linux os look hereTutorial for chmod
  8. F

    Spell mana / exhaust problem !

    I also have this issue I have read somewhere it has to do with inserting return doCombat(cid, combat, var) somewhere within your customs spell, I however cannot figure this out either, I also would appreciate any help with this.
  9. F

    Cannot start

    wont start This was the issue primarily using my old config as there is a new line in the new config. Thanks.
  10. F

    Cannot start

    I have compiled succesfully on ubuntu 8.10 but when i type ./theforgottenserver I just get "Error: aborted" I am using 0.3.3 Can someone please help. SOLVED
Back
Top