• 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.

[JASS] Easy Question :D

Status
Not open for further replies.
Level 11
Joined
Jul 28, 2007
Messages
920
Y but i dont know how -.-', when i had 5a jass there was no problem, when i instaled 5b, he tells me to "have less than 27 string litterals in a line".
Show me an example how can i fix it. I'm noob in jass so... never encountered on this.

Show short example ?
 
make local variables to store the data, use those variables in the function call (or whatever it is you're doing) instead of putting raw data there. Eg...

JASS:
call DisplayTimedMessageToPlayer(Player(0), "LOLOL reallly long string", 0, 0, 10)
could be done as
JASS:
local string s = "LOLOL really long string"
//...
call DisplayTimedMessageToPlayer(Player(0), s, 0, 0, 10)
 
Status
Not open for further replies.
Top