HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Displaying custom text on screen

11-18-2008, 09:55 PM#1
serbianbeast
I've been searching for like an hour or so for a system that lets you display any text on screen, but not the one provided by gui. I was thinking of something more like error text, that can popup anywhere on screen, for example where your upkeep text pops up when you reach certain upkeep level.
11-18-2008, 10:03 PM#2
Zandose
You mean fake error messages? You can use /n to to jump down to the next line. Adding 3 or so will give you the proper line for the error message. Now just use spaces to get it to the right place

Ex:
Collapse JASS:
call ClearAllTextMessages()
call BJDebugMSG("/n/n/n                                         Error: This is a fake error message")
11-19-2008, 09:43 AM#3
MaD[Lion]
we cannot display text anywhere on screen. Sadly wc3 is very limited...
11-19-2008, 07:57 PM#4
serbianbeast
Ah... Tnx anyway. I'll use this somehow