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

Windows need Help Whit This Problems

Teddy

SweStream.se
Joined
Oct 2, 2008
Messages
3,797
Reaction score
10
Location
Sweden 172
Need Some Help :) this i need help whit

Code:
22:03 You see a spellbook of enlightenment (Def:18, magic level +1). It weighs 45.00 oz. It shows your spells and can alsoshield against attack when worn.

But it dont give any magic lvls ? magic level +1)


and this
i want to do so the time of DecreaseFrags its low how do i do that ?
-- Battle
worldType = "pvp"
hotkeyAimbotEnabled = "yes"
protectionLevel = 45
killsToRedSkull = 10
pzLocked = 30000
deathLosePercent = 11
criticalHitChance = 40
removeAmmoWhenUsingDistanceWeapon = "no"
removeChargesFromRunes = "no"
timeToDecreaseFrags = 20 * 60 * 60 * 1000
whiteSkullTime = 15 * 60 * 1000
 
Last edited:
Make sure the spellbook is using the spellbook action script in data/actions/scripts/. timeToDecreaseFrags is in milliseconds, so 1000 = 1second, *60 = 60seconds, *60 = 1hour, and *20 = 20 hours. So the current equation equals 20 hours, if you want to decrease it to 10 hours change it to (timeToDecreaseFrags = 10 * 60 * 60 * 1000), 50 minutes (timeToDecreaseFrags = 50 * 60 * 1000), 30 seconds (timeToDecreaseFrags = 30 * 1000), etc.

Jo3
 
Need Some Help :) this i need help whit

Code:
22:03 You see a spellbook of enlightenment (Def:18, magic level +1). It weighs 45.00 oz. It shows your spells and can alsoshield against attack when worn.

But it dont give any magic lvls ? magic level +1)


and this
i want to do so the time of DecreaseFrags its low how do i do that ?
-- Battle
worldType = "pvp"
hotkeyAimbotEnabled = "yes"
protectionLevel = 45
killsToRedSkull = 10
pzLocked = 30000
deathLosePercent = 11
criticalHitChance = 40
removeAmmoWhenUsingDistanceWeapon = "no"
removeChargesFromRunes = "no"
timeToDecreaseFrags = 20 * 60 * 60 * 1000
whiteSkullTime = 15 * 60 * 1000

Add the spellbook to data/movements/movements.xml, both, left and ride hand.
 
Which distro are you using. I know in TFS 0.3 (Alpha 4), make sure in items.xml that the item has this subnode.
Code:
<attribute key="magicpoints" value="1" />

*EDIT* - Thanks Marcinek, forgot about the movement actions.

Jo3
 
Make sure the spellbook is using the spellbook action script in data/actions/scripts/. timeToDecreaseFrags is in milliseconds, so 1000 = 1second, *60 = 60seconds, *60 = 1hour, and *20 = 20 hours. So the current equation equals 20 hours, if you want to decrease it to 10 hours change it to (timeToDecreaseFrags = 10 * 60 * 60 * 1000), 50 minutes (timeToDecreaseFrags = 50 * 60 * 1000), 30 seconds (timeToDecreaseFrags = 30 * 1000), etc.

Jo3
i have tested that but the player only get more kills and when its on 0 its stuck on 0 ?!
 
Back
Top