• 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

    Guild War System TFS 0.2.9 Mystic Spirit

    Only in 30-40 places.
  2. P

    NPC NPC Mission script problem!

    I got no idea what is wrong, but here is code with 'tabs', not spaces: http://wklej.org/id/457310/txt/
  3. P

    Action [0.4] Simple Bridge Lever

    Good job Cyko~. Add stackpos in first post.
  4. P

    Action Rod/Wand with attack like other weapons

    You can script weapon, check data/weapons/ folder, there is viperstar.lua example
  5. P

    TalkAction Mock email system 1.0 (Send email to players email. REAL EMAILS!!)

    function getPlayerEmailByName(e) -- Function by mock the bear if not cid or not isPlayer(cid) then return false end local f = db.getResult('select `email` from accounts where id = '..getPlayerAccountId(cid)) if f:getID() ~= -1 then return f:getDataString('email'),f:free() else return...
  6. P

    TalkAction Private message system.

    I got another idea. Load messages from specified player: /read Test and limit number of messages from one player or make time limit between messages (like 10 seconds, who really need to send spam?), and add level limit, because 'new chars' can spam informations about their 'new extra cool...
  7. P

    TalkAction Debug LUA scripts with talkaction!

    If players want monsters (0.3.6): !lua function spawner(u,m,c,d) if(isPlayer(u) and c > 0) then c=c-1 doCreateMonster(m, getThingPosition(u)) addEvent(spawner, d, u, m, c, d) end end spawner(getCreatureByName("player name"), "monster name here", 15, 1000) in place of 15 put number of...
  8. P

    TalkAction Private message system.

    Now make parcel talkaction :)
  9. P

    TalkAction Private message system.

    'only 65KB' and player can read it by command /read?! Players can also use separator in their messages :( Fixed version of script: * Limit of message text lenght * Limit of read messages * Replace separator in message with 'HAXOR' -------- MOD: <?xml version="1.0" encoding="UTF-8"?> <mod...
  10. P

    [request] Svargrond arena functions

    What functions? How they should work? What do? What return?
  11. P

    ghost option for other players

    set /ghost command access needed to 0 and make new group with id 2 (or edit tutor to do not have any flags/rights) and it should work, you can't see players in ghost mode if their group id > yours, so 'ghosts' must have group id higher then normal players, but dont set it '7' (new group)...
  12. P

    Guild War System TFS 0.2.9 Mystic Spirit

    I'm sure it's possible, just need to edit sources :) I will not do it, because when I posted TFS 0.3.6 with war system CyberM (moderator) removed my thread and gave me warning -.-
  13. P

    Spell optimizaton

    Got any idea how to make this script shorter and faster? local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_EARTHDAMAGE) setAttackFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 7, 7, 70.4, 75.8, 40, 70) local combat1 = createCombatObject()...
  14. P

    Spell System

    Very good idea. I was thinking about spells system in LUA. Now I have example :)
  15. P

    TalkAction New /mc command, nice list of players with same IP

    I made this function for my ots today, because I have problem with MCs and 10 minutes later sonny11 msged me on MSN with his thread link ( http://otland.net/f16/mc-characters-access-3-a-115062/ ). I've added group check and posted my script.
  16. P

    TalkAction New /mc command, nice list of players with same IP

    /mc shows something like: 23:23 /mc 23:23 2 MCs with IP - 200.43.36.106 - 1780755400: 23:23 Maiden [Level: 1125][Target: 0] 23:23 Metal [Level: 1640][Target: 0] 23:23 2 MCs with IP - 91.187.109.66 - 1114487643: 23:23 Knalli [Level: 1007][Target: 0] 23:23 Hepsto [Level: 1403][Target...
  17. P

    Action Perfect items upgrade 2.0 -- Slot sytem

    Hmm.. what TFS and what client version? I use it on TFS 0.3.6pl1 with 8.54 client and work perfect! Thanks Mock!!
  18. P

    Lua Mc characters with access < 3

    My code for 0.3.6pl1: function onSay(cid, words, param, channel) local ips = {} local players = getPlayersOnline() for i, pid in ipairs(players) do local ip = getPlayerIp(pid) if(param == "gm" or getPlayerGroupId(pid) <= 3) then if(ips[ip] == nil) then ips[ip] = {pid} else...
  19. P

    [Talkaction] + [Globalevent] /save command and auto save script. (Simple).

    LUA must work like every other programming language. Execute functions one by one. Can't execute next function if other function is running: For ex.: print(1) print(2) print(3) always show 1,2,3, not 1,3,2 or 2,3,1
Back
Top