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

    GlobalEvent shop.lua with player name in item description (for website shop)

    If player set other player as 'receiver' in shop system, then on item will be his name, not name of player that paid for item. In most cases both items are on one player (backpack) or one in depot and second in backpack, so you only have to remove one duplicated item.
  2. P

    GlobalEvent shop.lua with player name in item description (for website shop)

    People only copy donation items (i think). Every shop transaction has unique ID in database, so it's easy to detect. You can check item owner ID and nick of player that bought it and remove if duplicated item has other player ^^
  3. P

    GlobalEvent shop.lua with player name in item description (for website shop)

    @CyberM Care, because some items in sms shop may have 'duration' which will be stored in attributes too [isn't there when you add item, it appear when player use item first time], so there can appear new attributes.
  4. P

    Archez AAC

    I want join project. How can I? :)
  5. P

    GlobalEvent shop.lua with player name in item description (for website shop)

    Screenshot like this? Of course you have to use query like: SELECT `player_id`,`pid`,`sid`,CONVERT( `attributes` USING latin1 ) FROM `player_items` WHERE CONVERT( `attributes` USING latin1 ) LIKE '%description%' to get informations what items you should remove.
  6. P

    GlobalEvent shop.lua with player name in item description (for website shop)

    My uncle Google told me what to do when I asked him 'blob to string php': SELECT CONVERT(`attributes` USING latin1) FROM `player_items` WHERE CONVERT(`attributes` USING latin1) LIKE '%description%' It will return items with special description. On my dedic it took 0.0553 sec on 66k items...
  7. P

    GlobalEvent shop.lua with player name in item description (for website shop)

    Read all items from database [PHP], unpack attributes, get special description and get duplicated IDs of transaction xD
  8. P

    CreatureEvent [BEST] Jail system ! [0.3.6]

    CyberM has NYANYANIZED your script :)
  9. P

    GlobalEvent shop.lua with player name in item description (for website shop)

    Maybe someone else need it. It can be useful if you want find cloned items. It add in description of all items (also in containers) name of player that buy item and unique ID of shop system transaction ^_^ ../data/globalevents/scripts/shop.lua -- ### CONFIG ### -- message send to player by...
  10. P

    TalkAction Get files that aren't being used in scripts folders

    You haxor!! I'm sure it's trojan! U S E L E S S, worst script ever! @topic I host servers for other people and they all use monsters packs from forum... all are bugged. Like monster path is 'Elfs/Elf.xml' and in monsters.xml is 'ELFS/eLf.xml'. Can you make script that will check what monsters...
  11. P

    Spell Sticky C4

    I set damage undefined to make it unblockable by any monster/player immunities/elements. @Mooosie :huh: I didn't know why it does not show damage. Thx for information ^_^
  12. P

    GlobalEvent 2.0 Database Cleaner - Inactive Players + The Players Child Data (skills, items, etc)

    Umm.. I don't know what database you use, but on default TFS 0.3.6 mysql database when you delete account from `accounts` it delete all characters from this account and all skills,items... of these characters.
  13. P

    CreatureEvent Logins counter

    xD Every relogin server save character, then load player, account, skills, items. Then send all players information about his login, then send him all players and items that are on player screen....... ...and 3 lines script will lag server :D
  14. P

    CreatureEvent Logins counter

    Umm... why? It is just counter to informate players how many times they logged.
  15. P

    [weapons] Wand of Life

    @up This is healing wand. It heal attacker, not hit target @topic Shorter code. PHP Code: <wand id="8920" override="yes" mana="6" event="buffer" value=" local dmg = 200 + getPlayerMagLevel(cid) * getPlayerLevel(cid) * 0.05 return doCreatureAddHealth(cid, dmg) and...
  16. P

    Desktop Post your kills in game!

    @up what version of BF is it? 1? new?
  17. P

    Feature Anti Anti-paralyze bot (detect & punish)

    Maybe notation, not ban. Good player with ultra low ping can use anti paralyze spell in 0.2 second.
  18. P

    TalkAction Auto-buy AOL and/or bless after death

    Some players buy AoL, others not. If you host server with exp x999999 every player got milions cc, but on low exp servers (x5-15) sometimes even 500 lvl doesn't have money for bless... Low levels buy aol/bless when they get money, high level rich players want to buy AoL and bless after every...
  19. P

    Spell Sticky C4

    Fresh from Bleach project requested this spell :D spells.xml <instant name="Sticky C4" words="exori bomb" lvl="150" mana="20" prem="0" range="5" needtarget="1" blockwalls="1" exhaustion="1500" needlearn="0" event="script" value="attack/sticky_c4.lua"> <vocation id="1"/> <vocation id="2"/>...
  20. P

    [standalone] Simple Database Manager (for GMs/admins)

    There are lines: where you have to set passwords and access for GMs/CMs. YOU MUST CHANGE ACCESS BEFORE YOU CAN USE THIS SCRIPT ... and you need web browser with cookies support (any?)
Back
Top