JASS code makes map not work - not sure why

Jackal

You can change this now in User CP... or Die Tryin
Reaction score
38
I am not a JASSer, as such. I can understand snippets but not really the thing as a whole, and certainly I cannot write my own code without reference material. However, in my quest to get a good third/first person camera, I ended up venturing into JASS territory because I was not satisfied with the GUI ones I could make and the GUI systems available. So, I came across http://www.hiveworkshop.com/forums/...ials-280/advanced-third-person-camera-145836/ which I tested in the world editor and it worked perfectly. However, once I change anything at all, or import it into my map, the trigger can be saved without NewGen throwing up any errors, but I cannot test the map. If I do try to test the map from WE I just get sent to the main menu of Warcraft III.

The below code is the same as the code in the attached map of the linked system, with the minor change of replacing udg_player with udg_Hero (for the sake of integration with my own map).

Code:
//TESH.scrollpos=5
//TESH.alwaysfold=0
function Trig_Multiplayer_Camera_Actions takes nothing returns nothing
    
    local boolean b
    local integer i = 1
    local location l
    local real aoa
    local real v
    local real x
    local real y
    local real z
    local real x1
    local real y1
    local real z1
    
    loop
        if udg_Hero[i] != null and (GetWidgetLife(udg_Hero[i]) > 0.405) then
            set v = 25
            set x = GetUnitX(udg_Hero[i])
            set y = GetUnitY(udg_Hero[i])
            set l = Location(x, y)
            set z = GetLocationZ(l)
            call RemoveLocation(l)
            set x1 = x + 64 * Cos(GetUnitFacing(udg_Hero[i]) * bj_DEGTORAD)
            set y1 = y + 64 * Sin(GetUnitFacing(udg_Hero[i]) * bj_DEGTORAD)
            set l = Location(x1, y1)
            set z1 = GetLocationZ(l)
            call RemoveLocation(l)
            call SetCameraZ(Player(i - 1), z + 128)
            loop
                set x1 = x - v * Cos(GetUnitFacing(udg_Hero[i]) * bj_DEGTORAD)
                set y1 = y - v * Sin(GetUnitFacing(udg_Hero[i]) * bj_DEGTORAD)
                set b = IsTerrainPathingType(x1, y1, TERRAIN_PATHING_WALKABLE)
                    if ((b == true) and (v < 450)) then
                    set v = v + 25
                    elseif ((b == false) or (v == 450)) then
                    exitwhen true
                    endif
            endloop
            if GetLocalPlayer() == Player(i - 1) then
                call SetCameraField(CAMERA_FIELD_ROTATION, GetUnitFacing(udg_Hero[i]), 0.08)
                call SetCameraField(CAMERA_FIELD_TARGET_DISTANCE, v, 0.08)
                call SetCameraField(CAMERA_FIELD_ANGLE_OF_ATTACK, 335 + ((z1 - z) * 0.5), 0.32)
                call SetCameraField(CAMERA_FIELD_FIELD_OF_VIEW, 120, 0)
                call SetCameraField(CAMERA_FIELD_FARZ, 5000, 5)
                call SetCameraTargetController(udg_Hero[i], 0, 0, false)
            endif
            exitwhen i == 1
            set i = i + 1
        endif
    endloop
    
    set l = null

endfunction

function InitTrig_Multiplayer_Camera takes nothing returns nothing
    set gg_trg_Multiplayer_Camera = CreateTrigger(  )
    call TriggerRegisterTimerEventPeriodic( gg_trg_Multiplayer_Camera, 0.04 )
    call TriggerAddAction( gg_trg_Multiplayer_Camera, function Trig_Multiplayer_Camera_Actions )
endfunction

So, what is the problem and how can I fix it?
 

Dirac

22710180
Reaction score
147
I have no idea.

Is your wc3 at the latest version?

i would try to change GetWidgetLife(whichUnit) to GetUnitState(whichUnit,UNIT_STATE_LIFE) and test again
 

dudeim

New Member
Reaction score
22
Why would he change that? Pretty sure GetWidgetLife is faster then GetUnitState and it shouldn't matter for making wc3 work:p
 

Dirac

22710180
Reaction score
147
Again i have no idea why it wouldn't work, but maybe his current warcraft version dons't know GetWidgetLife function
 

Jedi

New Member
Reaction score
63
Try that one
JASS:
function Trig_Multiplayer_Camera_Actions takes nothing returns nothing
    
    local boolean b
    local integer i = 1
    local location l
    local real aoa
    local real v
    local real x
    local real y
    local real z
    local real x1
    local real y1
    local real z1
    
    loop
        if udg_Hero<i> != null and (GetWidgetLife(udg_Hero<i>) &gt; 0.405) then
            set v = 25
            set x = GetUnitX(udg_Hero<i>)
            set y = GetUnitY(udg_Hero<i>)
            set l = Location(x, y)
            set z = GetLocationZ(l)
            call RemoveLocation(l)
            set x1 = x + 64 * Cos(GetUnitFacing(udg_Hero<i>) * bj_DEGTORAD)
            set y1 = y + 64 * Sin(GetUnitFacing(udg_Hero<i>) * bj_DEGTORAD)
            set l = Location(x1, y1)
            set z1 = GetLocationZ(l)
            call RemoveLocation(l)
            //call SetCameraField(CAMERA_FIELD_ZOFFSET, z + 128.00, 0.00)
            //call SetCameraZ(Player(i - 1), z + 128)
            loop
                set x1 = x - v * Cos(GetUnitFacing(udg_Hero<i>) * bj_DEGTORAD)
                set y1 = y - v * Sin(GetUnitFacing(udg_Hero<i>) * bj_DEGTORAD)
                //set b = IsTerrainPathingType(x1, y1, PATHING_TYPE_WALKABILITY)
                set b = IsTerrainPathable(x1, y1, PATHING_TYPE_WALKABILITY)
                    if ((b == true) and (v &lt; 450)) then
                    set v = v + 25
                    elseif ((b == false) or (v == 450)) then
                    exitwhen true
                    endif
            endloop
            if GetLocalPlayer() == Player(i - 1) then
                call SetCameraField(CAMERA_FIELD_ZOFFSET, z + 128.00, 0.00)
                call SetCameraField(CAMERA_FIELD_ROTATION, GetUnitFacing(udg_Hero<i>), 0.08)
                call SetCameraField(CAMERA_FIELD_TARGET_DISTANCE, v, 0.08)
                call SetCameraField(CAMERA_FIELD_ANGLE_OF_ATTACK, 335 + ((z1 - z) * 0.5), 0.32)
                call SetCameraField(CAMERA_FIELD_FIELD_OF_VIEW, 120, 0)
                call SetCameraField(CAMERA_FIELD_FARZ, 5000, 5)
                call SetCameraTargetController(udg_Hero<i>, 0, 0, false)
            endif
            exitwhen i == 1
            set i = i + 1
        endif
    endloop
    
    set l = null

endfunction

function InitTrig_Multiplayer_Camera takes nothing returns nothing
    set gg_trg_Multiplayer_Camera = CreateTrigger(  )
    call TriggerRegisterTimerEventPeriodic( gg_trg_Multiplayer_Camera, 0.04 )
    call TriggerAddAction( gg_trg_Multiplayer_Camera, function Trig_Multiplayer_Camera_Actions )
endfunction</i></i></i></i></i></i></i></i></i></i>
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    What is up WildTurkey?
  • The Helper The Helper:
    Looks like Google fixed whatever mistake that made the recipes on the site go crazy and we are no longer trending towards a recipe site lol - I don't care though because it motivated me to spend alot of time on the site improving it and at least now the content people are looking at is not stupid and embarrassing like it was when I first got back into this like 5 years ago.
  • The Helper The Helper:
    Plus - I have a pretty bad ass recipe collection now! That section of the site is 10 thousand times better than it was before
  • The Helper The Helper:
    We now have a web designer at my job. A legit talented professional! I am going to get him to redesign the site theme. It is time.
  • Varine Varine:
    I got one more day of community service and then I'm free from this nonsense! I polished a cop car today for a funeral or something I guess
  • Varine Varine:
    They also were digging threw old shit at the sheriff's office and I tried to get them to give me the old electronic stuff, but they said no. They can't give it to people because they might use it to impersonate a cop or break into their network or some shit? idk but it was a shame to see them take a whole bunch of radios and shit to get shredded and landfilled
  • The Helper The Helper:
    whatever at least you are free
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!

      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