• 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

    Lua Help me learn lua

    @uchiha1sasukee your script is fail too :p
  2. ahmed30

    Lua Help me learn lua

    bogart your script is fail :p
  3. ahmed30

    Lua Help me learn lua

    local place = {x= 95, y= 117, z= 7} function onStepIn(cid, item, pos, fromPos) doTeleportThing(cid, place) doSendMagicEffect(place, CONST_ME_ENERGYAREA) end there you can learn some lua
  4. ahmed30

    Stacking Bug 8.60 Potions [HELP]

    search in game.cpp for this 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 =...
  5. ahmed30

    How can I change player/tutor/gamemaster ID to 1/2/3 etc?

    localhost/phpmyadmin > sql to select all players with group id XX select * from `players` where `group_id` = 'XX' to Select A Player select * from `players` where `name` = 'PLAYER_NAME_HERE' to Change Group_id of Player UPDATE `players` SET `group_id` = 'XX' WHERE `name` =...
  6. ahmed30

    Loss Experience problem

    replace with this one function onLogin(cid) local loss = getConfigValue('deathLostPercent') if(loss ~= nil) then doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10) end return true end update `players` set `loss_EXPERIENCE` = '100'
  7. ahmed30

    Loss Experience problem

    go to localhost/phpmyadmin > sql UPDATE `players` SET `loss_containers` = 10; UPDATE `players` SET `loss_items` = 10; data\creaturescripts\scripts\login.lua search for local config = { loginMessage = getConfigValue('loginMessage'), useFragHandler =...
  8. ahmed30

    Compiling 0.3.6

    UPDATE `players` SET `loss_containers` = 0; UPDATE `players` SET `loss_items` = 0; worldType = "PVP-Enforced"
  9. ahmed30

    Anybody can figure this out

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

    (VOTE) Which internet browser best!

    i prefer google chrome in case the connection is slow but if it is fine then you have to use firefox
  11. ahmed30

    Windows PLX I NEED HELP PLXX u__u !!

    DROP TABLE `player_killers` CREATE TABLE `player_killers` ( `kill_id` INT NOT NULL, `player_id` INT NOT NULL, FOREIGN KEY (`kill_id`) REFERENCES `killers`(`id`) ON DELETE CASCADE, FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE ) ENGINE = InnoDB;
  12. ahmed30

    Solved rateSkill = (Solved)

    open data/xml/vocations.xml post it here
  13. ahmed30

    Windows When Starting TFS 3884..

    here you are
  14. ahmed30

    Need help with this bug!

    never tried it in 8.0 but try to add this in items.xml <attribute key="preventDrop" value="1"/>
  15. ahmed30

    Account Makers no config.php

    if you are using gesior so it always be there C:/Program Files/xampp/htdocs/config/config.php next time press F3 and write config.php
  16. ahmed30

    gesior errors

    try this alter table `accounts` add `vip_time` INT NOT NULL;
  17. ahmed30

    Script Error :SSS

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) if isPlayer(cid) then return true end NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function...
  18. ahmed30

    Compiling A hacker problem, need help quick - Rep ++

    check actions.xml maybe there's a ring or somthing there when you click on it change your group id :p
  19. ahmed30

    How do i make AOLs unlimited

    @up yea it's good but it's red skull amulet so it will protect him even he have red skull :p he can add to the amulet <attribute key="charges" value="99999"/> <attribute key="preventDrop" value="99999"/>
  20. ahmed30

    Debugging Problems.

    maybe there's a high number in the skills bar? i think it's evo so the lvl is too high or mana/ho something like this :p
Back
Top