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

Search results

  1. I

    Solved News Ticker do not WORK!

    It seems your table is empty ... Try to click on the insert-tab in phpMyAdmin and insert a post, see if the reading is properly working. Ignazio
  2. I

    Question about lua and C++ // TFS 1.1

    Yes, but what is it that you want to do? Why use the source? Ignazio
  3. I

    Question about lua and C++ // TFS 1.1

    I just don't understand what it is you want to do, you can already type /m Demon, with a successful result. Ignazio
  4. I

    Protection

    All items that have special effects, need to be added to movements as own rows. Ignazio
  5. I

    Question about lua and C++ // TFS 1.1

    Are you trying to replicate and modify the current function "createMonster"? Cause it already exists. Ignazio
  6. I

    ON@EXPERIENCE TFS 1.2 ERROR

    Could you post your player.lua file, so we can identify the problem. Ignazio
  7. I

    Error when i use an item

    Hard to say, you could try to debug-print some interesting variables. Try writing out `print(ret)` right before line 16, where the error occurs. Ignazio
  8. I

    Lua How do I know if the storage is already in use?

    You should keep track of them, alternately have a function they go through, that logs eventual, new storage ids, but it's probably easier to keep track of them by writing them them once used. You could use a simple text editor like Sublime to search through your whole project for "500012", or...
  9. I

    Conjure Item

    This applies to all conjured runes and items right? Can't seem to find a GIT-repo for you sources, but you could find the error-text (something like "You must put a blank rune in your hand"), search for it in your source, and opt your way from there, to remove the validation checking for a blank...
  10. I

    Conjure Item

    Do you know how to modify / compile the sources? It is a neccessary step for this procedure. Ignazio
  11. I

    Lua OnEquip Exiva Tfs 0.3.6

    Do you know how to edit the source? Since the find person function is not made in LUA, rather in the source code, it's inevitable to modify it from there. Here are some pointers if you have any experience: spells.cpp -> :1292 [SearchPlayer] Further down you can see validation processes at...
  12. I

    Lua mysql statement

    Might be problems entering spaces with talkactions, not sure. Why don't you just use "/addskill GM Name,shield,50" Ignazio
  13. I

    Windows Skill Shielding doesn't work

    You could try with that, then you know if it's a server-problem, or problems with your XML/LUA-files. Ignazio
  14. I

    Lua mysql statement

    What exactly do you want to do? Give a skill to a player according to name? Aren't there talkactions for that? You can try this db.executeQuery("UPDATE `player_skills` SET `value` = " .. (tonumber(t[3])) .. " WHERE `name` = " .. t[1] .. " and `skillid` = " .. (tonumber(t[2])) .. ";") And you'd...
  15. I

    Windows setup my website on server

    Do you have phpmyadmin? Are you using xampp? Try going to your host/phpmyadmin (http://yourip/phpmyadmin) From there you can chose the database you are using -> going to the SQL tab and paste that. Ignazio
  16. I

    Solved Offline to make guild

    You can try this instead, at line 1019, find this: if(!$player->isLoaded()) $guild_errors[] = 'Character <b>'.htmlspecialchars($name).'</b> doesn\'t exist.'; ... add this after: if($player->isOnline())...
  17. I

    Windows setup my website on server

    Try inserting this into the phpmyadmin CREATE TABLE IF NOT EXISTS `z_ots_comunication` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `type` varchar(255) NOT NULL, `action` varchar(255) NOT NULL, `param1` varchar(255) NOT NULL, `param2` varchar(255) NOT NULL...
  18. I

    Need alittle help with the ZNOTE ACC website.

    It looks like it's in some sort of debug mode, did you alter your config to enable debugging of some sort? Or someone who help you set it up printed some testing arrays. Ignazio
  19. I

    Solved Offline to make guild

    Why would you want this? The problem with players being online is that it rewrites their database information, here's the preprocess: When a player logs in, it reads data from the database (skills, level, items, etc.), it puts them into the host's local memory. When a player logs out, it reads...
  20. I

    Windows Skill Shielding doesn't work

    Are you wielding a shield? It seems shielding doesn't affect unless you're wielding a shield. Else your source might be edited, as far as I know the principles of shielding is working the TFS. Ignazio
Back
Top