SphereCommunity
removing skill titles? - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: removing skill titles? (/Thread-removing-skill-titles)



removing skill titles? - Kyrbis - 03-30-2012 06:11 AM

I was searching where the skill titles are been stored, but did not find it. I mean these Titles when a player has some high value in a skill like "Grandmaster Alchemist" or "Master Carpentry" and so on. in short: I don't want these titles to be shown in the paperdoll. So where do i have to erase them or change it so they're not shown anymore?


RE: removing skill titles? - ShiryuX - 03-30-2012 06:47 AM

You can change them with ".title" function in-game, or using TITLE in a script.


RE: removing skill titles? - Kyrbis - 03-30-2012 07:26 AM

Uhm... the ingame command....works how exactly?
argh...got it, im sorry Smile


RE: removing skill titles? - AwKward - 03-30-2012 12:49 PM

usually it was .x title ####
thats to target someone other than yourself.

but the only other place you could go to remove them was in the "sphere_skills.scp"
you would have to // every skill TITLE=


RE: removing skill titles? - Incanus - 03-30-2012 08:50 PM

The skilltitles are defined in sphere_msgs.scp and sphere_skills.scp. Just replace the names with empty strings.

Code:
skilltitle_neophyte      ""
skilltitle_novice      ""
skilltitle_apprentice      ""
skilltitle_journeyman      ""
skilltitle_expert      ""
skilltitle_adept      ""
skilltitle_master      ""
skilltitle_grandmaster      ""

Code:
[SKILL 0]
DEFNAME=SKILL_ALCHEMY
KEY=Alchemy
TITLE=
...
...



RE: removing skill titles? - WRWR - 03-31-2012 02:01 AM

(03-30-2012 08:50 PM)Incanus Wrote:  The skilltitles are defined in sphere_msgs.scp and sphere_skills.scp. Just replace the names with empty strings.

Code:
skilltitle_neophyte      ""
skilltitle_novice      ""
skilltitle_apprentice      ""
skilltitle_journeyman      ""
skilltitle_expert      ""
skilltitle_adept      ""
skilltitle_master      ""
skilltitle_grandmaster      ""

Code:
[SKILL 0]
DEFNAME=SKILL_ALCHEMY
KEY=Alchemy
TITLE=
...
...
...and name looks like The Fair MyNameHere,


RE: removing skill titles? - Valios - 03-31-2012 02:18 AM

These titles are associated to notoriety "karma/fame" and goes before the player's name.


RE: removing skill titles? - Kyrbis - 03-31-2012 02:27 AM

hum, I use Cloud_Br's script pack, amd there is no sign for titles in the sphere_msgs.scp Sad


RE: removing skill titles? - WRWR - 03-31-2012 02:32 AM

just add it
Code:
skilltitle_neophyte        ""
skilltitle_novice        ""
skilltitle_apprentice        ""
skilltitle_journeyman    ""
skilltitle_expert        ""
skilltitle_adept        ""
skilltitle_master        ""
skilltitle_grandmaster    ""
skilltitle_elder        ""
skilltitle_legendary        ""



RE: removing skill titles? - Kyrbis - 03-31-2012 02:55 AM

Sometimes...it's easier as you think...^^
Thanks :-)