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

    Solved [Webdesign] Site flexibility problem

    Use margin-left and margin-right as auto in the style of the 'Enter World' buttom..
  2. Kekox

    [SQL]Help, tfs database

    Change your hosting dude, that would not help for your server if you really want a good one.
  3. Kekox

    Complaint Delete Shadowcores from the fucking new posts search!

    I dont really see the problem with it..
  4. Kekox

    Solved DeathBroadcast

    Summ, with that one you gonna get the same error that users have been reporting on this thread.. When X players have 0 kills, storage returns 'false' or 'nil' so you get an error on console: [11/11/2012 07:58:55] data/creaturescripts/scripts/deathBroadcast.lua:line: bad argument #2 to 'min'...
  5. Kekox

    NPC Best travel NPC

    Not needed elseif if you use a table here... Here is the script remade with tables, easier if you want to add a new city, you just have to add a new line on citys and edit money and pos. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler)...
  6. Kekox

    Windows MySql Error

    bump! How did you solve it?
  7. Kekox

    Chelsea!!!!!!

    Bayern is gonna win. Chelsea have too many important players off..
  8. Kekox

    Selling Dedicated Servers ready to you

    Recommended. Air is a good and trustable guy, also the prices are pretty good [:
  9. Kekox

    [ModernAAC] CreateAccount Page

    Dude at least show us your script..
  10. Kekox

    Acubens Language System Works on [0.3/0.4] [getPlayerLanguage(cid)]

    Found a error in this line: $reg_account->setCustomField("flag", $reg_language); Should be: $reg_account->setCustomField("language", $reg_language);
  11. Kekox

    Scipt so people dont die in a certain area?

    That is easy.. local c = { campFrom = {x = 32310, y = 31891, z = 7}, campTo = {x = 32346, y = 31967, z = 7}, newPos = {x = 32369, y = 32241, z = 7} } function onStatsChange(cid, attacker, type, combat, value) if(isInRange(getThingPos(cid), c.campFrom, c.campTo)) then if (type ==...
  12. Kekox

    Compiling Max amount of outfits per player.

    Its client side, there is a max number you can change on soruces of course but that would just crash your client when you click on 'Change Outfit'.. The only way to modify the max amount of outfits a player can have is using your own client..
  13. Kekox

    Donation system

    You should try if the variables are the ones that wont work, use this: mysql_query("UPDATE accounts SET premium_points = 5 WHERE id = 1"); Now check account with ID 1 and see if it have 5 premium points, if not then something is wrong with your script.. In case it does have 5 premium...
  14. Kekox

    Allocation Failed

    Problem is the allocation failed cuz your server is out of memory, whats so hard to understand about that?
  15. Kekox

    Solved GESIOR ACC guilds error

    Epic.. http://localhost HAHA..
  16. Kekox

    phpmyadmin

    UPDATE players SET group_id = 6 WHERE id = 437;
  17. Kekox

    MaxLevel in Player.cpp

    He said its a pvp-enforced so I dont tihnk doPlayerSetExtraExpRate(cid, 0.0) would work since it work only when killing monsters.. You can try: function onAdvance(cid, skill, oldLevel, newLevel) if skill ~= SKILL__LEVEL then return true end if newLevel > 250 then...
  18. Kekox

    Linux mySQL - WAR System

    Same to me..
  19. Kekox

    Lua I have found Paygol script :) but help :S

    delete this post if possible.
  20. Kekox

    CreatureEvent No more Crash by Account Manager

    It is for servers that does not have website to make accounts.
Back
Top