• 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.
  • Create a faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 21st Texturing Contest: Upgrade is now concluded, time to vote for your favourite set of icons! Click here to vote!

Dumb function

Status
Not open for further replies.
Level 10
Joined
Aug 19, 2008
Messages
491
Why does this give me a syntax error in the elseif line?

JASS:
scope hehu
    globals
        private integer blueberrypie = 1
    endglobals

    private function blueberry takes nothing returns integer
        local integer returned
        if blueberrypie == 1 then
            set blueberrypie = 2
            set returned = 1
        elseif blueberrypie == 2
            set blueberrypie = 1
            set returned = 2
        else
            set blueberrypie = 1
        endif
        return returned
    endfunction
endscope

And don't tell me that this function sucks, I already know it does
 
re

JASS:
scope hehu
    globals
        private integer blueberrypie = 1
    endglobals

    private function blueberry takes nothing returns integer
        local integer returned
        if blueberrypie == 1 then
            set blueberrypie = 2
            set returned = 1
        elseif blueberrypie == 2 then // You missed "then" in the syntax. This caused the error.
            set blueberrypie = 1
            set returned = 2
        else
            set blueberrypie = 1
        endif
        return returned
    endfunction
endscope
 
Status
Not open for further replies.
Top