Page 1 of 1
Message ini example
Posted: Wed Jan 25, 2012 1:38 am
by Veleran
Could i get an example for a static message,i see the message.ini has no example text in it from what i see.
I tried combinations inspired by the manual with no luck.
Could you post something like:
Monsters Attack!
Prepare for Battle...
Re: Message ini example
Posted: Wed Jan 25, 2012 11:41 am
by QuestOfDreams
Actually, there should be 2 sample definitions in the message.ini file:
Code: Select all
[Static]
type = static
positionx = center
positiony = 100
displaytime = 1
fadeintime = 0
fadeouttime = 0
fontsize = 12
[Special]
type = static
positionx = center
positiony = 100
displaytime = 2
fadeintime = 0
fadeouttime = 0
fontsize = 11
graphic = message.bmp
graphicalpha = a_message.bmp
graphicpositionx = center
graphicpositiony = 80
graphicstyle = 0
The text of the message has to be placed in the message.txt file, e.g.
Code: Select all
[MonsterAttack]
Monsters Attack!
<CR>
Prepare for Battle ...
Re: Message ini example
Posted: Wed Jan 25, 2012 2:19 pm
by Veleran
Thanks, excellent message!
I was trying to to put the text to the ini,that is why nothing happened.