• 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!

Search results

  1. P

    Animation when walk on stairs?

    When I use OTClient with 7.72 server (OTHire with 7.4 sprites) it does not animate when player walk on stairs (press arrow = instant teleport up/down, tested from moving creature and as spectator). When he appears on other floor he is 'blocked' (because of server movement speed limit). It looks...
  2. P

    Problems with monsters and spawns? Errors in console? Check this site!

    1. First compress your 'monster' folder into .zip file: (example with WinRAR) ---------------------------------------- 2. Then select this file from disc: ---------------------------------------- 3. Then select spawns file from 'world' folder from disc: Link...
  3. P

    Lua Function getPlayerClientVersion(cid)

    Very simple, but WTF.Error requested it. int32_t LuaScriptInterface::luaGetPlayerClientVersion(lua_State* L) { //getPlayerClientVersion(cid) ScriptEnviroment* env = getEnv(); Player* player = env->getPlayerByUID((uint32_t)popNumber(L)); if(!player) {...
  4. P

    TalkAction Happy Birthday

    Happy Birthday talkaction. Like my spell ( http://otland.net/f82/birthday-spell-109448/ ), but in talkaction you can set name that script shows. http://www.youtube.com/watch?v=PerLU1_yLEg ../talkactions/talkactions.xml <talkaction words="HAPPY" access="4" event="script" value="happy.lua"/>...
  5. P

    Zombie event - NEW version, bug free, updated

    This is NEW - full - final version of Zombie Event script: http://www.youtube.com/watch?v=fguUJwL8H2Y * if zombie attacks player he loses and goes to kick position * zombies spawn every 5 (config) seconds * reward for players [default 5 gold nuggets] * zombies spawn minimum 4 tiles from...
  6. P

    NPC Walker - walks, ignore players and spam configured msges

    NPC Walker - walks, ignore players and spam configured messages. http://www.youtube.com/watch?v=5GtTNKy38WM Requested by Alegres ( http://otland.net/f83/request-two-npcs-128131/ ). ../data/npc/scripts/walker.lua local random_texts = {'Send SMSes!', 'Make donations!', 'Send PayPal...
  7. 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...
  8. 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"/>...
  9. P

    [GESIOR ACC] Remove ban, deletion, namelock for premium points [works]

    Someone requested on my profile ( View Profile: PhoOwned - OtLand ): So.. Add this page as 'unban' in index.php: case "unban"; $topic = "Unban"; $subtopic = "unban"; include("unban.php"); break; Make new file unban.php and paste: <?php $points_for_unban = 30; if($logged) {...
  10. P

    [GESIOR ACC] Sell characters on auctions (+ 'Buy Now') [ for premium points ]

    As title says ^^ - sell characters on auctions (for premium points) - 'Buy Now' option - name lock character, when player buy it (player can select new name in namelock manager in game) - admin panel (login on website admin account, default 1) to search good characters for sell (sort by...
  11. P

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

    I wrote today simple database manager for my GMs. I think it can be useful for other servers. Code is dirty, because I wasn't preparing it for release ;) ------------- Create new file .php in your website directory and paste: <?PHP /* Access: 1 = can view players and accounts, but not...
  12. P

    Animated background for all layouts

    I made animated background that you can add to your layout ^_^ * Animation will be over your background image/color and under logo/website content * Works in IE, Firefox, Chrome * Works fine after resize/scroll browser Example (text, color, animation speed is configurable): OTS.ME -...
  13. P

    CreatureEvent Reward for killing players. Block number of kills.

    Reward for killing players. Block number of kills. creatureevent type="kill" don't forget to register in login.lua local block_kills = {} local max_kills_per_target_player = 3 function onKill(cid, target) if(isPlayer(target)) then if(block_kills[getPlayerGUID(cid)] == nil) then...
  14. P

    Spell Mana Waste (exevo mana) - fixed

    Rewritten Evolutions spell: <instant name="Mana Waste" words="exevo mana" lvl="1" mana="1" aggressive="0" selftarget="1" exhaustion="2000" needlearn="0" event="script" value="support/manawaste.lua"/> function onCastSpell(cid, var) local playerMana = getPlayerMana(cid) return...
  15. P

    NPC Send/read messages from MySQL

    NPC send player messages [from NPCs window] to MySQL table and read messages from MySQL and send them to players NPCs chat [if online]. TFS VERSIONS: * 0.3.6 - tested * 0.4 - should work IN THIS VERSION: * you can block spam with parameter messagesMinInterval * script store messages from...
  16. P

    TalkAction Rainbow outfit

    Rainbow outfit. Like when you use bot ;) Players use: !rain GM/CM/GOD can use: !rain 1234 to set outfit color change time to 1234 seconds. local default_time = 30 -- time in seconds local fr = 5 -- frequency, changes per second local access_to_change_time = 3 -- access needed to set own...
  17. P

    CreatureEvent Logins counter

    Very simple script, but someone PMed me that he can't find it on forum :huh: local loginsCounterStorage = 12345 function onLogin(cid) local loginsCount = getCreatureStorage(cid, loginsCounterStorage) if loginsCount == -1 then doPlayerSendTextMessage(cid, MESSAGE_EVENT_ORANGE, "first...
  18. P

    Action City gates [for ex. yalahar]

    You can add 1 or more switches to add/remove gates. Switches must have ActionID (map editor) same as actionid in actions.xml and UniqueID (map editor) like in script config (for ex. 11536). Parameter fromPos must have z and stackpos (for most of gate items it's 1) parameters. Script...
  19. P

    Some informations about spells damage for newbies

    TFS 0.3.6 and 0.4 ################################ I wrote it ~month ago to explain my friend how to make spells :p You can use 4 or more parameters. Param order: setCombatFormula(combat, type, mina, minb, maxa, maxb[, minl, maxl[, minm, maxm[, minc[, maxc]]]]) How TFS calculate it: min =...
  20. P

    TalkAction Auto-buy AOL and/or bless after death

    Always newest version: phoowned-scripts - Revision 3: /trunk/SERVER/TFS_0_3/LUA/talkactions/auto_aol_bless_buyer Script add AoL/bless after player death ;) If player say /bless he get 5 bless for 50k If player say /bless on he will get 5 bless always after death (if he will have 50k gp). If...
Back
Top