• 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. dhrsantan

    Creating 7.4 Server!

    or use otclient.
  2. dhrsantan

    Port and connection problems when creating my o.t

    have you tried connecting over your global ip? Perhaps its just an uniform issue. www.whatsmyip.org
  3. dhrsantan

    Website

    I suggest you read and try this: https://css-tricks.com/perfect-full-page-background-image/ in your basic.css change: #ArtworkHelper { text-align: center; background-position: top center; background-attachment: scroll; background-repeat: no-repeat; width: 100%; height: 100%...
  4. dhrsantan

    Solved Mysql error

    I can't see anything wrong in your config.lua so far. Have you made sure that your Mysql database is runnning? Have you made sure that the Username and password are correct? (Capitals are inmportant aswell) as it is case sensitive. Also is the database name correct?
  5. dhrsantan

    Solved Mysql error

    1. post your config.lua use [code ] [/code ] 2. what tfs version? 3. what os are you hosting on? and please read: https://otland.net/threads/rules-for-the-support-board.217087/ https://otland.net/threads/need-help-ask-it-properly-and-correctly.18402/ Help us to help you.
  6. dhrsantan

    Question of "populating crates/chests/box's" ect

    @Codex NG But with onUse you'd simply take the "loot" out and then re open the box for new loot.
  7. dhrsantan

    OTClient CandyBot

    @Nazubal27 You'd have to debug yourself and do some fixes to make it work as it is an abadoned project.
  8. dhrsantan

    Solved Can't connect to own server

    but now you probably can't login from outside your lan. at least with the account mentiond in the config lua? Anyway I suppose this works for you. Glad you could solve it ;)
  9. dhrsantan

    Question of "populating crates/chests/box's" ect

    Wouldn't it be possible to index all the containers in the given area once and save their locations? so that the first time you run the command it will take a while but after that you should be able to cut down on that time as you've already located all the containers. Also you'd have to write...
  10. dhrsantan

    Solved Can't connect to own server

    Glad that you manged to solve the problem, Could you tell us what caused the problem exactly?
  11. dhrsantan

    Compiling Codeblocks error

    http://bfy.tw/4Hah
  12. dhrsantan

    Solved Can't connect to own server

    have you tryed to change the static ip for your hosting machine? It might be that some internal ip's conflict with eachother. You could also reboot your router when you're done making those changes It's a long shot but it might fix somethig. (for you router to reboot properly take out the power...
  13. dhrsantan

    A summon that heals it´s summoner

    Alright, I'll test tonight
  14. dhrsantan

    A summon that heals it´s summoner

    What Tfs version did you test this on? I think I'll try to make it work tonight when I've got some time to setup a development server :P Thanks for the amazing work on it so far. It will give me more than just a headstart on this :)
  15. dhrsantan

    A summon that heals it´s summoner

    So I had this idea of making a summonable monster that would heal the player that has summoned it. i.e like the exura sio spell for druids. any thoughts on how this would be doable?
  16. dhrsantan

    Solved Can't connect to own server

    first off, The local machine that is running the server what is his internal ip? Have you configured this to be static? (so that it is always the same). once you're sure that the internal ip is a static one. make sure you have forwarded the ports properly in your router so it can be accessed...
  17. dhrsantan

    Solved Some scripts just don't load.

    could you provide us with some code? also do you have the action id configured on title you want the step in action to trigger?
  18. dhrsantan

    Solved [PHP] foreach #help '-'

    according to your result the final code should look like this: <?php //CONFIGS require("../var/www/config.php"); $mysqli = new mysqli($config['database']['host'], $config['database']['login'], $config['database']['password']), $config['database']['database']; if ($mysqli->connect_errno) {...
  19. dhrsantan

    Solved [PHP] foreach #help '-'

    Try this and post the results ;) <?php phpinfo();<?php #CONFIGS require("../var/www/config.php"); $mysqli = new mysqli($config['database']['host'], $config['database']['login'], $config['database']['password']), $config['database']['database']; if ($mysqli->connect_errno) {...
  20. dhrsantan

    [Znote AAC] Advanced Spells v2

    TFS 1.0 fix after: if(config('TFSVersion') == 'TFS_03') { $string .= (($value['value'] == 'conjureRune') ? '\'Rune\'' : '\'Instant\''); } add: if(config('TFSVersion') == 'TFS_10') { $string .= "'{$key}'"; }
Back
Top