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

Summon EXP, Limit and Priority Target

trayron1

New Member
Joined
Jun 28, 2015
Messages
55
Reaction score
1
Hello OTLAND. im making a RPG server and im create 8 vocations, one is Warlock, he use summons, death element and anothers things ...

1º But when summon help me to kill monsters, he receive exp too, and im need remove this.
(Like Pokemons Servers, only player receive exp )
2º Limit summons for just one summon, and no two summons (dont have this option in config.lua, i will post for yours)
3º Make summon teleport on me when im go far from he, (dont have this option in config.lua too)
4º Like Pokemons Otserv, make monsters ever priority attack a summon first, after he die, change target for Warlock or another player on screen..

Ty <3
 
Hello OTLAND. im making a RPG server and im create 8 vocations, one is Warlock, he use summons, death element and anothers things ...

1º But when summon help me to kill monsters, he receive exp too, and im need remove this.
(Like Pokemons Servers, only player receive exp )
2º Limit summons for just one summon, and no two summons (dont have this option in config.lua, i will post for yours)
3º Make summon teleport on me when im go far from he, (dont have this option in config.lua too)
4º Like Pokemons Otserv, make monsters ever priority attack a summon first, after he die, change target for Warlock or another player on screen..

Ty <3

https://otland.net/threads/rules-for-the-support-board.217087/
You need to tell us what server/tfs version you're using.

Do you got source files for the server?
 
Im using TFS 10.76-10.77
https://otland.net/threads/tfs-1-1-10-77-windows-7-8-32-bit-64-bit.232074/

Im dont have source files

Code:
-- Combat settings
-- NOTE: valid values for worldType are: "pvp", "no-pvp" and "pvp-enforced"
worldType = "pvp"
hotkeyAimbotEnabled = true
protectionLevel = 1
killsToRedSkull = 3
killsToBlackSkull = 6
pzLocked = 60000
removeChargesFromRunes = true
timeToDecreaseFrags = 24 * 60 * 60 * 1000
whiteSkullTime = 15 * 60 * 1000
stairJumpExhaustion = 0
experienceByKillingPlayers = false
expFromPlayersLevelRange = 75

-- Connection Config
-- NOTE: maxPlayers set to 0 means no limit
ip = "localhost"
bindOnlyGlobalAddress = false
loginProtocolPort = 7171
gameProtocolPort = 7172
statusProtocolPort = 7171
maxPlayers = 0
motd = "Welcome to Ynlanor, access our site for more infomations: ynlanor.com!"
onePlayerOnlinePerAccount = true
allowClones = false
serverName = "All Stars"
statusTimeout = 5000
replaceKickOnLogin = true
maxPacketsPerSecond = 25

-- Deaths
-- NOTE: Leave deathLosePercent as -1 if you want to use the default
-- death penalty formula. For the old formula, set it to 10. For
-- no skill/experience loss, set it to 0.
deathLosePercent = -0

-- Summons
    maxPlayerSummons = 1
    teleportAllSummons = true
    teleportPlayerSummons = true
   
-- Houses
-- NOTE: set housePriceEachSQM to -1 to disable the ingame buy house functionality
housePriceEachSQM = 1000
houseRentPeriod = "never"

-- Item Usage
timeBetweenActions = 200
timeBetweenExActions = 1000

-- Map
-- NOTE: set mapName WITHOUT .otbm at the end
mapName = "forgotten"
mapAuthor = "Komic"

-- Market
marketOfferDuration = 30 * 24 * 60 * 60
premiumToCreateMarketOffer = true
checkExpiredMarketOffersEachMinutes = 60
maxMarketOffersAtATimePerPlayer = 100

-- MySQL
mysqlHost = "localhost"
mysqlUser = "root"
mysqlPass = ""
mysqlDatabase = "ynlanor"
mysqlPort = "3306"
mysqlSock = ""

-- Misc.
allowChangeOutfit = true
freePremium = false
kickIdlePlayerAfterMinutes = 15
maxMessageBuffer = 4
emoteSpells = true
classicEquipmentSlots = false

-- Rates
-- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
rateExp = 1
rateSkill = 0
rateLoot = 1
rateMagic = 0
rateSpawn = 1

-- Monsters
deSpawnRange = 2
deSpawnRadius = 50

-- Stamina
staminaSystem = true

-- Scripts
warnUnsafeScripts = true
convertUnsafeScripts = true

-- Startup
-- NOTE: defaultPriority only works on Windows and sets process
-- priority, valid values are: "normal", "above-normal", "high"
defaultPriority = "high"
startupDatabaseOptimization = false

-- Status server information
ownerName = ""
ownerEmail = ""
url = "https://otland.net/"
location = "Sweden"
 
Last edited:
Back
Top