Modcraft - The community dedicated to quality WoW modding!

Wrath of the Lich King Modding => Serverside Modding => Tutorials => Topic started by: Nupper on December 10, 2012, 02:13:09 pm

Title: [TUTORIAL] Custom Game Tips.
Post by: Nupper on December 10, 2012, 02:13:09 pm
Extract GameTips.dbc from Patch-enUS-2.MPQ
Convert it into DBC.CSV File

Open it and you will get something like (yes i am using mine):
(http://img15.imageshack.us/img15/2111/86686332.png)

|cffffd100Tip:|r Must always be before your text.

Reconvert it to DBC and add to your MPQ.


This is my first guide sorry :(
Title: Re: [TUTORIAL] Custom Game Tips.
Post by: schlumpf on December 10, 2012, 02:22:47 pm
Quote
|cffffd100Tip:|r Must always be before your text.
Only if you want 'Tip:' in front of everything.

Also you might want to remove the unused ones so people don't get tip-less loading screens.

Quote
Mounds
Title: Re: [TUTORIAL] Custom Game Tips.
Post by: stoneharry on December 10, 2012, 03:28:50 pm
What tool did you use to convert to csv? DBCUtil has a bad output for gametips.dbc for me.
Title: Re: [TUTORIAL] Custom Game Tips.
Post by: Nupper on December 10, 2012, 04:08:00 pm
Quote from: "stoneharry"
What tool did you use to convert to csv? DBCUtil has a bad output for gametips.dbc for me.

I use my own Updated version.
Title: Re: [TUTORIAL] Custom Game Tips.
Post by: Nupper on December 10, 2012, 04:28:13 pm
Quote from: "schlumpf"
Quote
|cffffd100Tip:|r Must always be before your text.
Only if you want 'Tip:' in front of everything.

Also you might want to remove the unused ones so people don't get tip-less loading screens.

Quote
Mounds

I kept them there as default due to sometimes blizzard requires a set amount of lines.
Title: Re: [TUTORIAL] Custom Game Tips.
Post by: Ascathos on December 10, 2012, 05:30:38 pm
MyDbcEditor can read the file out properly. Editing it with it is no issue at all.
Title: Re: [TUTORIAL] Custom Game Tips.
Post by: stoneharry on December 10, 2012, 05:33:32 pm
Quote from: "Ascathos"
MyDbcEditor can read the file out properly. Editing it with it is no issue at all.

So much easier to work with CSV format as then you can use text editor functions - search and replace, etc.

If you want to reset game tips and start writing your own with MyDBCEditor, you have to delete each line 1 by 1 with a confirmation dialogue each time. =/
Title: Re: [TUTORIAL] Custom Game Tips.
Post by: Ascathos on December 11, 2012, 02:55:59 pm
Quote from: "stoneharry"
Quote from: "Ascathos"
MyDbcEditor can read the file out properly. Editing it with it is no issue at all.

So much easier to work with CSV format as then you can use text editor functions - search and replace, etc.

If you want to reset game tips and start writing your own with MyDBCEditor, you have to delete each line 1 by 1 with a confirmation dialogue each time. =/
Luckily, MyDBCEditor can read and export /Strings/ as patch out and import these patchs..
Title: Re: [TUTORIAL] Custom Game Tips.
Post by: Alastor on February 01, 2014, 02:09:03 am
(- Sorry for Czech parts of text it's from my project -)
For Example you can use your own color for game tips as i used.
(http://i.imgur.com/sHbPhdf.png)
The Code of this Gametip is
Code: [Select]
|cffFF0000Oheň:|r Očišťuje a spaluje málo kdo sním dokáže soužít ale |cff9900FFTemnota|r se tomu vyhla jen |cffFFFF00Světlo|r si |cffFF0000Oheň|r podmaňilo
|cff9900FFTemnota:|r Nechce nic víc než moc a sílu ovládat to co chcou kdo se jim postaví bude zatracen je to snadné |cff9900FFTemnota|r se nesmí vyrušovat
|cff33FF00Příroda:|r Její kořeny sahají hluboko do země a chtějí ovládnout vše zelené dá se zní težit ale jak dlouho ? ... dokud tě nepohltí ... |cff33FF00Příroda|r je zrádná
|cff3300FFLed:|r Studený chladný mrtví nečinný |cff3300FFLed|r ... pamatuj že zabije jen toho kdo se mu poddá ti co zněj teží jsou šťastlivci a zároveň otroci...
|cffFFFF00Světlo:|r Ničí vše co se mu nezdá, nelíbí ... co koliv nebo vše čemu prostě nerozumí jsou zaslepeni vírou ve |cffFFFF00Světlo|r a to je zabije všechny jeto lidská chyba

its Clasic Cff code (colored chat) and Images you can link to this gametips too

(IN GAME CHAT)
/script SendChatMessage("124cffFF0000 huehue 124r");

(IN SCRIPT [like gametips, serverside ann mesage,etc..)
|cffFF0000 huehue |r"

-space between FF0000 and huehue or |r not required-
Title: Re: [TUTORIAL] Custom Game Tips.
Post by: Skarn on February 02, 2014, 01:37:05 pm
These colour codes can also be used in the news block of the login screen. However, not all of them will work. I'm sure only about colours that are supported by wow. As far as I remember, it was red, green, black, blue, yellow, pink and maybe some colours more. Thanks for providing this information, I will try some of them soon.
Title: Re: [TUTORIAL] Custom Game Tips.
Post by: Alastor on May 11, 2014, 03:16:28 pm
I was testing lot of them and all worked well