• 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

    Windows Need Help php scripten

    after i gave you a link you didn't create the table read the error ! so create it Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 1 no such table: z_news_tickers' in C:\xampp\htdocs\latestnews.php:97 Stack trace: #0...
  2. ahmed30

    Aol Forever! problem!

    create file called forever aol.lua function onPrepareDeath(cid, lastHitKiller, mostDamageKiller) if isPlayer(cid) == true then if (getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 2196) then -- AMULET ID doCreatureSetDropLoot(cid, false)...
  3. ahmed30

    Windows Need Help php scripten

    localhost/phpmyadmin > sql CREATE TABLE IF NOT EXISTS `z_news_tickers` ( `date` int(11) NOT NULL default '1', `author` int(11) NOT NULL, `image_id` int(3) NOT NULL default '0', `text` text NOT NULL, `hide_ticker` tinyint(1) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; INSERT...
  4. ahmed30

    Tfs error

    DROP TABLE `shop_history` CREATE TABLE `shop_history` ( `id` int(11) NOT NULL auto_increment, `to_name` varchar(255) NOT NULL default '0', `to_account` int(11) NOT NULL default '0', `from_nick` varchar(255) NOT NULL, `from_account` int(11) NOT NULL default '0', `price` int(11) NOT NULL...
  5. ahmed30

    Windows Need Help php scripten

    http://otland.net/f16/gesior-aac-installation-error-137498/#post1323079
  6. ahmed30

    Blessing NPC

    /data/npcs/create file blesser.xml <?xml version="1.0" encoding="UTF-8"?> <npc name="Blesser" script="data/npc/scripts/bless.lua" walkinterval="2000" speed="1" floorchange="0" access="5" level="1" maglevel="1"> <health now="150" max="150"/> <look type="57" head="115" body="113" legs="31"...
  7. ahmed30

    Important question!!!!!!!!!!!

    http://otland.net/f82/automagically-clean-unused-houses-multi-world-support-68986/#post707710
  8. ahmed30

    Lua rope & shovel

    replace your script with this one Rope local spotId = {384, 418, 8278, 8592} local holeId = { 294, 369, 370, 383, 392, 408, 409, 427, 428, 430, 462, 469, 470, 482, 484, 485, 489, 924, 3135, 3136, 7933, 7938, 8170, 8286, 8285, 8284, 8281, 8280, 8279, 8277, 8276, 8323, 8380, 8567, 8585...
  9. ahmed30

    Need Spell To regenerate Full mana

    here is one as example :p function onCastSpell(cid, var) if doPlayerRemoveMoney(cid, 3000) then doCreatureAddMana(cid, getCreatureMaxMana(cid)) doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_GREEN) doSendAnimatedText(getCreaturePosition(cid),'MANA !', TEXTCOLOR_RED)...
  10. ahmed30

    edit oracle

    not tested local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  11. ahmed30

    Gesior0.3.8 Latest News Error

    CREATE TABLE `killers` ( `id` INT NOT NULL AUTO_INCREMENT, `death_id` INT NOT NULL, `final_hit` TINYINT(1) UNSIGNED NOT NULL DEFAULT FALSE, `unjustified` TINYINT(1) UNSIGNED NOT NULL DEFAULT FALSE, PRIMARY KEY (`id`), FOREIGN KEY (`death_id`) REFERENCES `player_deaths`(`id`) ON DELETE...
  12. ahmed30

    Plz help me Gold ingot problem!

    <action itemid="2148;2152;2160;2157" event="script" value="changegold.lua"/> function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid == ITEM_GOLD_COIN and item.type == ITEMCOUNT_MAX then doChangeTypeItem(item.uid, item.type - item.type) doPlayerAddItem(cid...
  13. ahmed30

    shopadmin edit shop offer rep

    try this <?PHP if($group_id_of_acc_logged >= $config['site']['access_admin_panel']) { $offertype = $_REQUEST['offer_type']; if((empty($action)) AND (empty($offertype))) { $main_content .= '<br><h2><center><a href="?subtopic=shopadmin&action=addoffer">ADD SHOP OFFER</a><br><br><a...
  14. ahmed30

    [QUESTION] See it!

    just replace shop.lua with this one :p -- ### 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 CONFIG ### function...
  15. ahmed30

    Deflect Ring

    lol ! just add this in items.xml <attribute key="reflectPercentAll" value="10"/> don't forget Equip/DeEquip on movement.xml
  16. ahmed30

    Gesior AAC installation error!

    CREATE TABLE IF NOT EXISTS `z_news_tickers` ( `date` int(11) NOT NULL default '1', `author` int(11) NOT NULL, `image_id` int(3) NOT NULL default '0', `text` text NOT NULL, `hide_ticker` tinyint(1) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; INSERT INTO `z_news_tickers`...
  17. ahmed30

    Fatal error: Call to a member function fetch() on a non-object in C:\xampp\htdocs\pot

    post the line ? if you are gesior try to insert ALTER TABLE `ACCOUNTS` ADD `premdays` INT NOT NULL DEFAULT 0;
  18. ahmed30

    Lua Mod capture the flag

    <globalevent name="ctf" interval="900" event="script"><![CDATA[ 900 = 15 minute 1800 = 30 minute etc
  19. ahmed30

    HELP lose bag when die.

    localhost/phpmyadmin > sql UPDATE `players` SET `loss_containers` = 10; UPDATE `players` SET `loss_items` = 10;
  20. ahmed30

    Character.php Fatal error help =/

    this will work
Back
Top