Informative messages

Post Reply
User avatar
dL-Templisk
This is my homepage
This is my homepage
Posts: 118
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Sat Jul 26, 2003 8:56 pm
Location: California, USA
Contact:

Informative messages

Post by dL-Templisk »

On amx mod I have this:
amx_imessage "Welcome to %hostname%" "255100000"

How would I make it show as:
Welcome to %hostname%
New line

So a second portion of the message on the next line, is there a certain character you have to place in between?
User avatar
Nick|NFo
Former staff
Former staff
Posts: 2252
Joined: Sun Mar 30, 2003 1:56 pm
Location: 127.0.0.1

Post by Nick|NFo »

you can do two things:

within the imessages you can use a "\n" to jump to the next line...

or something like:

Code: Select all

amx_imessage "Welcome to %hostname%" "000255100" 
amx_imessage "This server is using AMX\nVisit http://amxmod.net" "000100255" 
amx_imessage "This sever has a help file just say /help" "000100255" 
amx_imessage "Don't Bich To The Admins" "255000000" 
amx_imessage "this wont be displayed" "255000246"
Post Reply