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

Talented Scripts

Owner Maydel

Evolera.Tk
Joined
Aug 16, 2015
Messages
302
Reaction score
40
Location
Egypt
Hi Im Search About scripter Said Talent Its Any one recieved 200 Level got 2 Points talents Goto Talent Npc Said hi Talent he give him trade if he paladin give him Damage Spells Or Heal If he Mage Give Him Mp Or Damage Spells Can Any one Do This Scripts talents any one got 200 level got 2 points and make npc said talent and do talent trade to him uh and dmage spells or mage mp and damage spell who can make it and when he look at him self he show how much points he has do in mp and spells or uh understand me all My tfs 0.4 Can Any one Use it please..

BumB

.................................................

Why no one Answer did any one dont know how to do this script Lol..

@Amiroslo @Ninja @Evan @Codex NG
 
Last edited by a moderator:
First of all, this is posted in the wrong section.
You should post this in requests.

Secondly you need to have some patience you can't spam 4 times the same day when none replied to your thread.
You should NOT bump before 24h passed, because this is just spam.

Third, you need to explain with a more proper english because I can't really understand what you want with this.

Do not tag users randomly, if they want to help they'll find this thread anyway.
 
Last edited:
@HalfAway very Thanks for your reply Im Not good in english but i need said im need Scripter when i got 200 level got 2 talent point and when i look on my self i see my self you have 2 talent then i goto npc talents i trade with them he got to me 2 choose need the point for 1%extra mana or 1%spells damage for 1 talent understand me and healing to thanks you again for your reply

For Example npc https://gyazo.com/ce30121494cb86f4c0994668638d8132
https://gyazo.com/3cc99e098cda3d1ee58473d6520131a0
https://gyazo.com/9187ff1cf49ca23cb95f89c5f51736d4
 
Last edited by a moderator:
I made a start for you.

Add this in events/player.lua at function onLookBattleList also at function onLook but change creatue for thing then.
Code:
if creature:isCreature() and creature:isPlayer() then
    local talentPoints = creature:getStorageValue(5555)
    description = string.format("%s\nTalent Points: [%0.2f]", description, talentPoints)
end


Simple onAdvance script, create a file in creaturescripts and paste this, also register the script in creaturescripts.xml.
Code:
local config = {
    level = 200,
    points = 2,
    storage = 5555
}

function onAdvance(player, skill, oldLevel, newLevel)
    if skill ~= SKILL_LEVEL or newLevel <= oldLevel then
        return true
    end

    if newLevel >= config.level then
        if player:getStorageValue(config.storage) < 1 then
            player:sendTextMessage(MESSAGE_INFO_DESCR, "You recieved ".. config.points .." talent points for reaching level ".. config.level .."!")
            player:setStorageValue(config.storage, player:getStorageValue(config.storage) + config.points)
        end
    end
    return true
end
 
Last edited:
And when i look for my self see how much point i have and the npc and the mana and uh and give 1 % extra in heal mana spells
understand me @HalfAway
I already gave you the solution for onLook to show how many points you got.

You need to try to learn yourself also, I gave you a few stuff to start with.
 
rly... that is easy to do in 1.x atleast and u can do it all in lua, 200 euro is way overprice xD
maybe its harder in 0.4 but i doubt it

basically
give storagevalues on lvl (talent points)
npc gives different storagevalues and removes the storagevalues u got on lvl (removes talent point and gives u for example more spells on damage)
u then use storagevalues in onhealthchange scripts etc to make dmg higher, your healing higher etc
it's literally that easy
 
rly... that is easy to do in 1.x atleast and u can do it all in lua, 200 euro is way overprice xD
maybe its harder in 0.4 but i doubt it

basically
give storagevalues on lvl (talent points)
npc gives different storagevalues and removes the storagevalues u got on lvl (removes talent point and gives u for example more spells on damage)
u then use storagevalues in onhealthchange scripts etc to make dmg higher, your healing higher etc
it's literally that easy
i assume he wants it all, which means that the mana and health adds on !buffs and lots lof other features he didnt even mention

the damage part was needed in source atleast
 
nono i make make to him any thing he need to can trust me i wont make chargeback i dont like any thing like scammer the trust is only 1 time not 2 im sorry for my poor english
 
Back
Top