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

    Compiling Problem compile onMonsterSpawn

    I think it's not your fault, because i got the same error
  2. gmstrikker

    Lua Help diablo loot system errors

    Thats the script base: [Mod] Random Item Stats
  3. gmstrikker

    Compiling Awalys show green shield WS 0.4

    How to show the green shield of war system always... Even if not fighting a war, just to show more clear who is guild (like a party for the guild)... Using 0.4 (GitHub - Fir3element/3777)
  4. gmstrikker

    Mod or sourcecode ManaBar under healthBar in displayUI

    Everything is easy after you know... Are you sure need server side modifications to create a mana bar downstairs of health bar? Why this mana bar isnt use only client side?
  5. gmstrikker

    Help to add premium days on refereal system 0.4

    It not gonna work, its necessary a SQL command to player/accountid... This function: doPlayerAddPremiumDays(cid, 1) cid need a player online
  6. gmstrikker

    Lua Help to DDOS players protection

    It could be possible with no use sources? It should be too better, monsters stop attack players with high ping...
  7. gmstrikker

    [Mod] Random Item Stats

    There is something wrong here: if n.usePercents then doItemSetAttribute(tmpItem, 'description', '[' .. n.name .. ': +' .. percent .. '%]' .. (desc == '' and '' or '\n' .. desc)) else...
  8. gmstrikker

    Lua Diablo loot script help

    But i dont want change that range attack thing attr['quick'] = { attr = 'attackSpeed', name = 'Attack Speed', percent = {10, 50}, types = {MELEE, DISTANCE, WAND} } It shoudnt add attack on wands, rods, bows, crossbows? And it: attr['hawkeye\'s'] = { attr = 'hitChance'...
  9. gmstrikker

    Lua Diablo loot script help

    I've setted loot rates to 100, using: <item name="longsword" chance="10000" /> <item name="wand of vortex" chance="10000" /> <item name="snakebite rod" chance="10000" /> <item name="crossbow" chance="10000" /> <item name="bow" chance="10000" /> But only...
  10. gmstrikker

    Lua Diablo loot script help

    Srry, my dumb... I was testing your script to see how its work... And lol, it's really funny more OTs should have it, to players looking for it, it's make a new value in items Did you know why bows, wands and rods never drop enchanted? I mean, i make a monster with this drops: <item...
  11. gmstrikker

    Lua Diablo loot script help

    Are you using 0.4? I tried to use this script too, but not work, tried to make changes like this: <event type="login" name="itemstats_login" event="script"><![CDATA[ function onLogin(cid) registerCreatureEvent(cid, 'randomstats_loot') return true end ]]> </event> But still...
  12. gmstrikker

    Very important - Rules change on otservlist.org

    There is others ot lists big like otservlist.org?
  13. gmstrikker

    Lua Upgrade system + auction system

    I think this server use the same system then you, maybe can give you a idea: http://www.noxiousot.com/?subtopic=market&page=1 --- I thought it should work but i don't know how to check if item is upgraded when player set to sell And don't know how to add upgrade when player buy a upgraded item...
  14. gmstrikker

    Lua Upgrade system + auction system

    The right way to do this is add a table on DB? ALTER TABLE `auction_system` ADD `rarity` TINYINT(1) NOT NULL DEFAULT '0' AFTER `date`; Official DB: CREATE TABLE `auction_system` ( `id` int(11) NOT NULL auto_increment, `player` int(11), `item_id` int(11), `item_name` varchar(255)...
  15. gmstrikker

    Lua Upgrade system + auction system

    Hello guys, i've helping my friend in him project And with searches here on forum i edit this auction system almost exactly like he want (thanks to @tokenzz , @slawkens , and me XD) But there is only one thing that i don't find and don't know how to do It's been hard to me and i need a experient...
  16. gmstrikker

    Lua Only int not double value

    Thank you!
Back
Top