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

    Help with VIP Status

    /* VIP STATUS */ if($config['site']['show_vip_status']) { $id = $player->getCustomField("id"); $main_content .= '<TR BGCOLOR="'.$bgcolor.'"><TD WIDTH=10%>Vip Status:</TD>'; $vip = $SQL->query('SELECT vipdays FROM accounts WHERE...
  2. ahmed30

    Custom Items

    it's not weapon or something to change the attack but you can change the name <item id="100" name="void"> to <item id="100" name="keffaly"> weapons like sov <item id="2400" article="a" name="magic sword"> <attribute key="description" value="It is the Sword of Valor."/> <attribute...
  3. ahmed30

    Potions, runes and group itens

    open game.cpp search for void Game::showHotkeyUseMessage(Player* player, Item* item) { int32_t subType = -1; if(item->hasSubType() && !item->hasCharges()) subType = item->getSubType(); const ItemType& it = Item::items[item->getID()]; uint32_t count =...
  4. ahmed30

    Solved error i think with mysql

    localhost/phpmyadmin > sql CREATE TABLE `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, `param3` varchar(255) NOT NULL...
  5. ahmed30

    Account manager problems

    if you are trying to run mysql server with sqlite so it will fail maybe check world id of the server in config world_id = 0 then go to localhost/phpmyadmin > sql UPDATE `players` set `world_id` = '0'
  6. ahmed30

    Compiling Why when i compile tfs 0.3.6 it does weight less?

    bcz you deleted databasesqlite.h/.cpp databasepgsql.h/.cpp databasepgsql.cpp databaseodbc.h databaseodbc.cpp so it compile 3.52 :p if you are using mysql you don't need these ^
  7. ahmed30

    Lua What command should i use to remove PZ??

    -- Xerazx function onUse(cid, item, fromPosition, itemEx, topos) if not exhaustion.check(cid, 123) then exhaustion.set(cid, 123, 20) doRemoveCondition(cid, CONDITION_INFIGHT) else doPlayerSendCancel(cid, 'you must wait ' .. exhaustion.get(cid, 123) .. ' seconds to use it again') end return...
  8. ahmed30

    [Creaturescripts] Rebirth onLook Counter

    repp if i helped
  9. ahmed30

    Strange problem with wild growth 0.3.6 rep++

    try it local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_EARTH) function onCastSpell(cid, var) local pos = variantToPosition(var) if getTileInfo(getThingPos(cid)).protection or getTileInfo(pos).protection then return not...
  10. ahmed30

    Compiling Error otserver

    turn of all your antivirus/isp/firewall/ then open www.whatismyip.org and put your ip in config.lua g.l
  11. ahmed30

    why this script dont work?

    your script is fail and how come local config ={ > then local place? fail as hell :p here the right one local config = { place = {x=1000, y=1000, z=7} --Where they will be teleported to } function onStepIn(cid, item, position, fromPosition) doTeleportThing(cid, config.place)...
  12. ahmed30

    why this script dont work?

    try it [not tested] local place = {x=1000, y=1000, z=7} --Where they will be teleported to function onStepIn(cid, item, position, fromPosition) doTeleportThing(cid, place) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_ENERGYAREA) doPlayerSendTextMessage(cid, 22, "Wrong...
  13. ahmed30

    Linux Strange

    remove !disband from game or site
  14. ahmed30

    Linux Strange

    turn off create guilds from game?
  15. ahmed30

    Solved (luaDoCombat) Creature not found [SPELL]

    local acombat1 = createCombatObject() local acombat2 = createCombatObject() local acombat3 = createCombatObject() local acombat4 = createCombatObject() local acombat5 = createCombatObject() local acombat6 = createCombatObject() local acombat7 = createCombatObject() local acombat8 =...
  16. ahmed30

    [SOLVED] [Error - GlobalEvents::think] Couldn't execute event: shop ... Server DOWN

    <globalevent name="Shop" interval="15" event="script" value="shop.lua"/> -- ### CONFIG ### -- message send to player by script "type" (types you can check in "global.lua") SHOP_MSG_TYPE = 19 -- time (in seconds) between connections to SQL database by shop script SQL_interval = 30 -- ### END OF...
  17. ahmed30

    Debug Error

    bcz there's a high number in the skills bar like the mana/health or lvl so they cant open the skills bar
  18. ahmed30

    Windows Help with highscores!

    what version do you use? gesior or modern? give more information edit if it's gesior 0.3.6 i already installed it 1000x and found no bugs so if you use gesior 0.3.6 try to reinstall it and setup again
  19. ahmed30

    {NPC} Is this Possible?

    http://otland.net/f16/rebirth-onlook-script-132904/#post1287852
  20. ahmed30

    Windows Help with highscores!

    replace with http://wklej.to/alUiG
Back
Top