• 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

    [Spells] Simply, noob question

    TFS 0.3.6 and 0.4 (I did not check how it work in 0.2.x) ############################################################# 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...
  2. P

    TalkAction Auto-buy AOL and/or bless after death

    Thanks. I forgot about this talkactions param :P First post updated.
  3. P

    Update Your Vocations.xml

    Same attributes are for outfits ^_^ - even more Maybe someone post outfits with all attributes :)
  4. P

    Spell Arcane Strike (exori vita), rewritten, bugs fixed

    @Wibben BUGS? In orginal version if you attack someone and he runs to depot you still shoot to him <_< To my script I should add check isSightClear and range :rolleyes: In my version I had only one animation, but it's configurable, so everyone can add what they need. My version is shorter...
  5. 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...
  6. P

    Spell Life steal / Life drain (for X seconds)

    (It's part of my talents system) in ../data/creaturescripts/creaturescripts.xml add: <event type="login" name="TalentsLogin" event="script" value="talents/login.lua"/> <event type="statschange" name="TalentsStatsChange" event="script" value="talents/statschange.lua"/> in...
  7. P

    Spell Arcane Strike (exori vita), rewritten, bugs fixed

    Popular Evo otses spell. Attack target X times (count = 9). Easy to edit ^_^ --################################################# --### Scripted by PhoOwned ### --### Contact: [email protected] ### --#################################################...
  8. P

    TalkAction Add items to SMS shop

    Ye. C++ functions/objects/variables have normal names in TFS - don't change every new release ;) EDIT: Don't you think that every TFS release we get same code just with new functions names? :( As I remember 'war system by elf' was in 0.3.0 beta (on TFS developers private svn), of course without...
  9. P

    TalkAction Add items to SMS shop

    If you have any ideas send me PM. I will try to script them and post :) My next script will be !screen, command that copy all items,monsters,players info [IP] and positions from player screen to database and PHP script that generate .jpg (to show GM what happend).
  10. P

    TalkAction Add items to SMS shop

    When you start ots SMS shop take much time, copy id, item description, paste in acc. maker, add.... Now you can do it in few seconds :w00t: but first you must install my talkaction ^_^ Create ../data/talkactions/scripts/addshoptalkaction.lua and paste: function onSay(cid, words, param...
  11. P

    [Gesior acc] Simple characters search page

    One new option. Show player items from donators shop :) ############ SHOW DONATORS SHOP ITEMS ############ $donators_items = $SQL->query('SELECT `player_items`.`itemtype`, SUM(`player_items`.`count`) AS count, `z_shop_offer`.`offer_name` AS name FROM `player_items`, `z_shop_offer` WHERE...
  12. P

    [Gesior acc] Simple characters search page

    MORE INFO != BETTER INFO You can copy my EQ shower to your characters page. My version use only one SQL query to load all items ;) It's only part of my other script (not finished yet): Swevolutions - Sell Char
  13. P

    [Gesior acc] Simple characters search page

    How it looks: How it works: Swevolutions - Characters characters.php code: <?PHP $main_content .= ' <style type="text/css"> .tableFont {color: #FFFFFF} .tableRow0 {background-color: #003300;text-align: left;vertical-align: middle;font-size: 16pt} .tableRow0:hover...
  14. P

    Who is from guild online, help fix

    What engine do you use? I wrote it for 0.3.6pl1 I think you use other, because I had to change many functions names in code from you post to make it work. In my sources code of this function is: int32_t LuaScriptInterface::luaGetGuildId(lua_State* L) { //getGuildId(guildName) uint32_t guildId...
  15. P

    Who is from guild online, help fix

    Hmm.. add talkaction with words needed? and say: your_words Guild Name
  16. P

    Who is from guild online, help fix

    CODE: :w00t: function onSay(cid, words, param) local onlineMembers = {} local guild_id = getGuildId(param) if guild_id then for _, uid in ipairs(getPlayersOnline()) do if getPlayerGuildId(uid) == guild_id then table.insert(onlineMembers, uid) end end if...
  17. P

    TalkAction Configurable monsters outfits for players v1.0

    You can add line to make it only for pacc or require item or anything :) Player say: to get outfit with ID 12, outfit stay after death/logout. Add in 'mods'. Tested on 0.3.6pl1. <?xml version="1.0" encoding="UTF-8"?> <mod name="Outfit change" version="1.0" author="P~"...
  18. P

    Releasing some of my fun War System. Ranks, Kill Streaks, Bonus Additions.

    Nice scripts for warotses, but could be shorter and easier to config. Read: lua-users wiki: Tables Tutorial
  19. P

    Action Health and mana runes (few runes in one script)

    Based on potions script. It's script with my server config [example]: local config = { healthMultiplier = 1.4, manaMultiplier = 1.0 } local RUNES = { [2275] = {hpMin = 500, hpMax = 10000, HPmultiLvl = 6.0, HPmultiMaglvl = 1.0, HPplus = 1000, hpValues = {0.8, 1.2}, -- HP RUNE...
Back
Top