• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Lesson 16

Status
Not open for further replies.

ABM

ABM

Level 7
Joined
Jul 13, 2005
Messages
279
[Jass=]/*
* Display the following
*
* Print(string)
*/

/*
hello
my
my
my
*/

/*
-> I said "jump"
*/

/*
While "\" is awesome
Pickles are even more...
Awesome!
*/

//! runtextmacro Variables()
string a
string b
string c
//! runtextmacro Actions()
set a = "hello\n my\n my\n my"
set b = "I said \"jump\""
set c = "While \" \\ \" is awesome\n Pickles are even more...\n Awesome!"
call Print(a)
call TriggerSleepAction(3.00)
call Print(b)
call TriggerSleepAction(3.00)
call Print(c)
//! runtextmacro End_Code()[/code]
 
Status
Not open for further replies.
Top