Return Missing DisplayChatMessage?

ShadowInTheD

Active Member
Reaction score
12
The JASS syntax checker says that the line (below) is missing return?
Code:
call DisplayTextToPlayer(GetTriggerPlayer(),0,0,"Base 70:" + Base70String)

What does this actually mean and how do I fix it?

P.S. does anyone know of any ACTIVE WC3 map making clan on the West server?
 

WolfieeifloW

WEHZ Helper
Reaction score
372
You're using the little button above your code but below trigger comments that says "Syntax Check"?
If so, ignore it and just save.

If an error is coming up when you're trying to save, then there's a problem.
 

ShadowInTheD

Active Member
Reaction score
12
JASS:
function Decimal2Base70 takes integer i returns string
local string Alphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!@#$%^&*"
local string Base70String
local integer tracker = i
local integer tracker2
local integer loopinteger
local integer check = 0
local integer StringInteger = 1
loop
exitwhen check < 0
if i/Pow(70,check) < 1 then
set check = -5
set loopinteger = check - 1
endif
set check = check + 1
endloop
loop
exitwhen loopinteger < 0
set tracker = ModuloInteger(tracker,R2I(Pow(70.0,I2R(loopinteger))))
set tracker2 = i - (70*tracker)
set Base70String = SubString(Base70String,StringInteger,StringInteger)+SubString(Alphabet,tracker2,tracker2)
set tracker = tracker2
set StringInteger=StringInteger+1
set loopinteger = loopinteger-1
endloop
call DisplayTextToPlayer(GetTriggerPlayer(),0,0,"Base 70:" + Base70String)
endfunction
 

WolfieeifloW

WEHZ Helper
Reaction score
372
Oh god, my eyes are burning :p .
No indentation/spacing.

But uh;
JASS:
function Decimal2Base70 takes integer i returns string

The function requires you to return something.
You're not returning anything anywhere in there.
 
General chit-chat
Help Users
  • No one is chatting at the moment.

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top