• 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

    Change everybody's vocation. (All Knights to Elite Knights for example) [MySQL]

    Update `players` SET `promotion` = '1' WHERE `promotion` ='0'
  2. ahmed30

    Talkaction - Sex.lua error

    local combat = createCombatObject() local condition = createConditionObject(CONDITION_DROWN) setConditionParam(condition, CONDITION_PARAM_DELAYED, 1) addDamageCondition(condition, 20, 2000, -10) setCombatCondition(combat, condition) function onSay(cid, words, param) sexProposal =...
  3. ahmed30

    Reborn script error!

    local config = { posWrong = {x=1090, y=1096, z=7}, -- If they dont have required storage value posCorrect = {x=1093, y=1151, z=7}, -- If they DO have correct storage value rebornV = 2500, -- reborn storage rebornN = 1 -- reborn value requirement } -- Reborn teleport script function...
  4. ahmed30

    [script] promotion

    <?xml version="1.0" encoding="UTF-8"?><vocations> <vocation id="0" name="None" description="none" needpremium="0" gaincap="5" gainhp="5" gainmana="5" gainhpticks="6" gainhpamount="1" gainmanaticks="6" gainmanaamount="1" manamultiplier="4.0" attackspeed="2100" soulmax="100" gainsoulticks="120"...
  5. ahmed30

    [script] promotion

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local t = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  6. ahmed30

    [script] promotion

    local amount = 100 -- amount of gold local looktype = 123 -- number of looktype local itemid = 1234 -- itemid to remove local count = 10 -- amount of itemid(^) function onUse(cid, item, frompos, item2, topos) local k = getPlayerPromotionLevel(cid) if k ~= 1 then if getPlayerItemCount(cid...
  7. ahmed30

    Compiling More than 255 animation effects

    because wrong numbers ?:p MAGIC_EFFECT_255 = 0xFF, //255 MAGIC_EFFECT_256 = 0x100, //256 MAGIC_EFFECT_257 = 0x101, //257 MAGIC_EFFECT_258 = 0x102, //258 MAGIC_EFFECT_259 = 0x103, //259 MAGIC_EFFECT_260 = 0x104, //260 MAGIC_EFFECT_261 = 0x105, //261...
  8. ahmed30

    Solved Change !online command

    local config = { showGamemasters = getBooleanFromString(getConfigValue('displayGamemastersWithOnlineCommand')) } local useExhaust = true local storageValue = 1234 local exhaustTime = 30 function onSay(cid, words, param, channel) if useExhaust and getCreatureStorage(cid, storageValue)...
  9. ahmed30

    Solved Change !online command

    local config = { showGamemasters = getBooleanFromString(getConfigValue('displayGamemastersWithOnlineCommand')) } local str = 1234 local exhaustTime = 30 function onSay(cid, words, param, channel) if exhaustion.check(cid, str) then return doPlayerSendCancel(cid, 'you are exhausted')...
  10. ahmed30

    website problem

    restarted apache? if you don't know how then just restart your pc
  11. ahmed30

    website problem

    open xampp > php > php.ini search for error_reporting = E_ALL change it to error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED
  12. ahmed30

    website problem

    disable notices
  13. ahmed30

    Max Account Gesior

    ajax/check_account.php search for if(strlen($name) > 32) change it to if(strlen($name) > 8) search for if(strlen($account) > 0 && strlen($account) < 32) change it to if(strlen($account) > 0 && strlen($account) < 8) search for Account name is too long (max. 32 chars) change it to...
  14. ahmed30

    When i login

    ALTER TABLE `players` ADD `redskull` SMALLINT NOT NULL DEFAULT 0; lol DEFAULT not DEAFULT :p
  15. ahmed30

    !gmp from shop system

    local item = 1234 --- item id local amount = 100 -- amount of the item local removePoints = 50 -- amount to remove points local str = 456 -- empty storage local time = 60 -- exhaustion time function onSay(cid, words, param, channel) if exhaustion.check(cid, str) then return...
  16. ahmed30

    Gesior bugs :S

    ALTER TABLE `players` ADD `redskulltime` BIGINT NOT NULL DEFAULT '0';
  17. ahmed30

    Website Problems

    localhost/phpmyadmin > sql ALTER TABLE `players` ADD `world_id` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0;
  18. ahmed30

    Windows Mysql help

    localhost/phpmyadmin > sql INSERT IGNORE INTO `player_skills` SELECT `id` , 0, 10, 0 FROM `players` UNION SELECT `id` , 1, 10, 0 FROM `players` UNION SELECT `id` , 2, 10, 0 FROM `players` UNION SELECT `id` , 3, 10, 0 FROM `players` UNION SELECT `id` , 4, 10, 0 FROM `players` UNION...
  19. ahmed30

    Lua Help me with a script please

    <action uniqueid="1234;12345" event="script" value="zoa.lua" /> function onUse(cid, item, fromPosition, itemEx, toPosition) if itemEx.uid == 1234 then doTeleportThing(cid, {x = 100, y = 100, z = 7}) doSendMagicEffect(getPlayerPosition(cid), 11) elseif itemEx.uid == 12345 then...
  20. ahmed30

    127.0.0.1 step 5 fail

    localhost/phpmyadmin > sql ALTER TABLE `accounts` ADD `vip_time` INT NOT NULL;
Back
Top