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

    TFS 0.X Add player item for talkaction?

    How to add some items for parcel to offline players? I would like to do /addcoin Darknight,50 I tried: <talkaction log="yes" words="/addcoin" access="5" event="script" value="add_tokens.lua"/> function onSay(cid, words, param) if(param ~= "") then local result =...
  2. caquinha

    TFS 0.X Die in PVP ZONE (red zone on remeres) lose exp

    What do i need to change in sources Fir3element/3777 (https://github.com/Fir3element/3777/tree/master/src) To when die in red zone still losing items,xp, not only be teleported to the temple...
  3. caquinha

    TFS 0.X Custom desert quest with error

    I'm trying to do a desert quest for my custom server (it is not a default desert quest) -- table based on base vocations local p = { [1] = { -- knight player = { position = {x = 1550, y = 1678, z = 10}, toPos = {x = 1589, y = 1636, z = 8} }...
  4. caquinha

    TFS 0.X how to deal with returns in LUA?

    how to deal with returns in LUA? i tried to create some global functions like: data/lib/usual.lua function getBaseVocation(cid) local voc = getPlayerVocation(cid) print("1 data/lib/common.lua voc: " .. voc) if voc == 1 or voc == 4 or voc == 5 or voc == 6 or voc == 7 then...
  5. caquinha

    TFS 0.X how to deal with returns in LUA?

    how to deal with returns in LUA? i tried to create some global functions like: data/lib/usual.lua function getBaseVocation(cid) local voc = getPlayerVocation(cid) print("1 data/lib/common.lua voc: " .. voc) if voc == 1 or voc == 4 or voc == 5 or voc == 6 or voc == 7 then...
  6. caquinha

    TFS 0.X how to make this door looks like open?

    how to make this door looks like open? 13:00 You see a closed door. ItemID: [5123], ActionID: [7428]. function onUse(cid, item, frompos, item2, toPosition) if getPlayerLevel(cid) <= 30 then doTeleportThing(cid, toPosition) else doPlayerSendTextMessage(cid...
  7. caquinha

    TFS 0.X How to make that only one vocation can use DUALWIELD?

    How to make that only one vocation can use DUALWIELD? My source already have DUALWIELD: https://github.com/Fir3element/3777/search?q=dualWield But for all vocation... How to block to all vocation and allow only to vocation 15 and 16?
  8. caquinha

    CSS menu down menu

    You guys know that menu had in shadowcores had this menu: And when you click on that menu open a list down of links to click, thats what i asking for help i'm on the way? <div id="menu"> <div id="nav"> <ul> <a href="home.php">Home</a> <a...
  9. caquinha

    Help to finish: Convert Znote Referral 1.1 to 0.4

    Anyone could help me to fix my try to convert this system 1.1 to 0.4? System: https://otland.net/threads/znote-aac-tfs-1-1-referral-system.227199/#post-2405828 What i've tried: Looking others scripts i made this chages: local cfg = { stor = 250888, requiredLevel = 13, bonusPoints...
  10. caquinha

    Error when create guild: Guild list is empty. ~ Field 'checkdata' doesn't have a default value

    Anyone know how to fix this error when create guild on znote aac? Guild list is empty. string(114) "INSERT INTO `guilds` (`name`, `ownerid`, `creationdata`, `motd`) VALUES ('New Age', '2', '1476275366', '');" (query - SQL error) Type: voidQuery (voidQuery is used for update, insert or delete...
  11. caquinha

    Lua Monk train skill to everybody around

    I saw a idea on forum to monks train shield for all around it... I tryed to help the guys and make it to mee too xD But not work... Show me this error when start the server: [6:30:13.889] [Warning - Monsters::deserializeSpell] Monk - Unknown shootEffect: physical [6:30:13.889] [Warning -...
  12. caquinha

    Lua Block bank transfer to some towns

    Anyone could help me to fix this? I want block bank transfer money to some towns like i tried here: if getPlayerTown(getCreatureByName(msg):lower()) ~= 7 or getPlayerTown(getCreatureByName(msg):lower()) ~= 9 then transfer[cid] = msg...
  13. caquinha

    Lua Bounty list on NPC

    I using this Bounty Hunter system: https://otland.net/threads/bounty-hunters-system-player-hunt-system.27721/ With NPC system... Just need website to check who is hunted, but its nothing RPG... @Nothxbye made to show only player ID When i say... hi, list show only: 1 Anyone know how to show...
  14. caquinha

    Lua Send item to depot offer owner

    I'm using this market system for 8.60 https://otland.net/threads/offline-player-to-player-item-trader-auction-system.51447/ And i need some help to if offer have more then 30 days, it be delete for offers lists and send item back to player depot... @Stellow made this script to delete offers but...
  15. caquinha

    Help to fix Referral system 1.1 to 0.4

    Anyone could help me to convert this system... I tried to use: https://otland.net/threads/znote-aac-tfs-1-1-referral-system.227199/ In my 0.4 server, i made some changes, but not work... Error: [0:23:11.548] [Error - CreatureScript Interface] [0:23:11.548]...
  16. caquinha

    Lua Target damage to hit players stackeds

    How to change to all target spells like: Like ice strike: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_ICEDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_ICEATTACK) setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_SMALLICE)...
Back
Top