Fatal Error in Code

Zackreaver

New Member
Reaction score
2
Hey there, still learning Jass, but I believe I got the hang of it, I read some tutorials and found jass to truly be a much more efficient method for triggering. Anyway, this one piece of code's been bugging me, it functions alright, but in certain occasion's it causes the game to crash

JASS:
function CondRockHarvest takes nothing returns boolean
    return GetSpellAbilityId() == 'A036'
endfunction

function RockCasterSize takes unit u returns integer
    if (GetUnitTypeId(u) == 'h00S' ) then
        return 3
    elseif (GetUnitTypeId(u) == 'h00T' ) then
        return 2
    endif
    return 1
endfunction


function RockGroup takes nothing returns nothing
    local unit u = GetTriggerUnit()
    local texttag t
    local location p = GetDestructableLoc(GetEnumDestructable())
    local destructable d = GetEnumDestructable()
    local integer money
    local real rocklife
    local real size
    local integer multiplier

    set multiplier = RockCasterSize(u)

    if (GetDestructableTypeId(d) == 'LTrc') then

        call SetDestructableLife( d, (GetDestructableLife(d) + 50) * multiplier )
        call AddSpecialEffectLocBJ( p, "Doodads\\LordaeronSummer\\Terrain\\LoardaeronRockChunks\\LoardaeronRockChunks0.mdl" )
        call DestroyEffectBJ( GetLastCreatedEffectBJ() )
        set rocklife = GetDestructableLife(d)

        set money = R2I(GetDestructableLife(d) / 10)
        set size = 0.10 + (0.05 * I2R(money))
        set money = money * multiplier

        call RemoveDestructable( d )
        call CreateDestructableLoc( 'LTrc', p, GetRandomDirectionDeg(), size, 0 )
        set d = GetLastCreatedDestructable()
        call SetDestructableOccluderHeight( d, 0.00 )
        call SetDestructableLife( d, rocklife )

        call AdjustPlayerStateBJ( money, GetOwningPlayer(u), PLAYER_STATE_RESOURCE_GOLD )
        call CreateTextTagLocBJ( ( "+" + I2S(money) ), p, 0, 10, 100, 100, 0.00, 0 )
        set t = GetLastCreatedTextTag()
        call ShowTextTagForceBJ( false, t, GetPlayersAll() )
        call ShowTextTagForceBJ( true, t, GetForceOfPlayer(GetOwningPlayer(u)) )
        call SetTextTagPermanentBJ( t, false )
        call SetTextTagVelocityBJ( t, 64, 90 )
        call SetTextTagLifespanBJ( t, 5 )
        call SetTextTagFadepointBJ( t, 3.00 )

    endif

    set size = 0
    set rocklife = 0
    set money = 0
    set d = null
    set t = null
    set u = null
    call RemoveLocation(p)
    set p = null
endfunction




function StartRockHarvest takes nothing returns nothing
    local location p = GetSpellTargetLoc()
    call EnumDestructablesInCircleBJ( 200.00, p, function RockGroup )
    call RemoveLocation(p)
endfunction


//===========================================================================
function InitTrig_Rock_Harvest takes nothing returns nothing
    local trigger t
    set t = CreateTrigger(  )
    call TriggerRegisterAnyUnitEventBJ( t, EVENT_PLAYER_UNIT_SPELL_EFFECT )
    call TriggerAddCondition( t, Condition( function CondRockHarvest ) )
    call TriggerAddAction( t, function StartRockHarvest )
endfunction


I had error's with this before, I think it was when I was trying to read real's as integer's, I think i fixed that, but now im getting strange crashes.

The way the trigger works is, i cast this spell over a group of rock chunks, each rock chunk is replaced with a bigger rock chunk with more hp, and the player gets gold depending on the size, and the unit type casting the spell.

Now the error is happening apparently when the rocks are being attacked after the spell has been cast. It's strange.


PS. I'm still getting the hang of jass, any advice would be lovely.
 

--Thanatos--

New Member
Reaction score
33
When attacked?

Well, I think that's probably because of something the destructable has... Maybe in the Object Editor.

Or maybe you should try to remove the SetDestructableLife or SetDestructableOccluderHeight.
 
W

wantok

Guest
Try setting the destructable's max life to rocklife before you set its actual life. That could possibly be a problem.

A couple of other things:

JASS:
function RockGroup takes nothing returns nothing
    local unit u = GetTriggerUnit()//there is no triggering unit this will equal null
    //if you want to get the casting unit you need to make a global and pass it that way.
   //like so
    local unit u = udg_CastingUnit
    local texttag t
    local player pl = GetOwningPlayer(u)
    local destructable d = GetEnumDestructable()
    local location p = GetDestructableLoc(d)
    local integer money
    local real rocklife
    local real size
    local integer multiplier

    set multiplier = RockCasterSize(u)

    if (GetDestructableTypeId(d) == 'LTrc') then
        
        //there really is no need to set this destructable's life here since you are removing it anyways
        set rocklife = (GetDestructableLife(d) + 50) * multiplier
        //you can destroy the special effect immediately here.
       call DestroyEffect(AddSpecialEffectLoc("Doodads\\LordaeronSummer\\Terrain\\LoardaeronRockChunks\\LoardaeronRockChunks0.mdl", p )

        set money = R2I(rocklife / 10)
        set size = 0.10 + (0.05 * (money)
        set money = money * multiplier

        call RemoveDestructable( d )
        set d = CreateDestructableLoc( 'LTrc', p, GetRandomDirectionDeg(), size, 0 )
        call SetDestructableOccluderHeight( d, 0.00 )
        call SetDestructableMaxLife(d, rocklife)//i don't know if this will help but it doesnt hurt to try.
        call SetDestructableLife( d, rocklife )

        call SetPlayerState(pl, PLAYER_STATE_RESOURCE_GOLD, GetPlayerState(pl, PLAYER_STATE_RESOURCE_GOLD) + money)
        set t = CreateTextTagLocBJ( ( "+" + I2S(money) ), p, 0, 10, 100, 100, 0.00, 0 )
        call ShowTextTagForceBJ( false, t, GetPlayersAll() )
        call ShowTextTagForceBJ( true, t, GetForceOfPlayer(GetOwningPlayer(u)) )
        call SetTextTagPermanentBJ( t, false )
        call SetTextTagVelocityBJ( t, 64, 90 )
        call SetTextTagLifespanBJ( t, 5 )
        call SetTextTagFadepointBJ( t, 3.00 )

    endif

    set size = 0//you don't need to set integers and reals to zero
    set rocklife = 0
    set money = 0
    set d = null
    set t = null
    set u = null
    call RemoveLocation(p)
    set p = null
endfunction
function StartRockHarvest takes nothing returns nothing
    local location p = GetSpellTargetLoc()
    set udg_CastingUnit = GetTriggerUnit()//set the global variable here
    call EnumDestructablesInCircleBJ( 200.00, p, function RockGroup )
    call RemoveLocation(p)
    set p = null
endfunction


You still have a lot of BJ functions that can be replaced with natives if you want.
 

Sim

Forum Administrator
Staff member
Reaction score
534
JASS:
function RockGroup takes nothing returns nothing
    local unit u = GetTriggerUnit()//there is no triggering unit this will equal null
    //if you want to get the casting unit you need to make a global and pass it that way.

You can use Event responses in Enum functions. No need for a global variable.

You could also enum yourself the destructibles, using a loop.
 
W

wantok

Guest
You can use Event responses in Enum functions. No need for a global variable.

Really? I was unaware of that. Disregard that part then.

edit: After further consideration, I did know that. I was thinking about the function was like ForGroup(), but clearly it is not.
 

Zackreaver

New Member
Reaction score
2
Found it

Found the cause of the crash, apparently if you remove a destructable or unit (Haven't tested on units) just as its getting attacked, the game tries to deal damage to a unit that doesnt exist, and it crashes.

So I just killed the destructable instead, that way it hits the corpse.

If you want to see what I mean, make a trigger that removes a destructable on command. Attack it, then remove it before the animation reaches its damage point, your game should crash immediately.

It's seems strange, but my trigger did stop crashing when I changed it to killdestructable instead of removedestructable.
 
General chit-chat
Help Users
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/
  • The Helper The Helper:
    I think we need to add something to the bottom of the front page that shows the Headline News forum that has a link to go to the News Forum Index so people can see there is more news. Do you guys see what I am saying, lets say you read all the articles on the front page and you get to the end and it just ends, no kind of link for MOAR!
  • The Helper The Helper:
    Happy Wednesday!
    +1
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    Sticking with the desserts for now the latest recipe is Fried Apple Pies - https://www.thehelper.net/threads/recipe-fried-apple-pies.194297/
  • The Helper The Helper:
    Finally finding about some of the bots that are flooding the users online - bytespider apparently is a huge offender here - ignores robots.txt and comes in from a ton of different IPs
  • Monovertex Monovertex:
    @The Helper I'm really not seeing the "Signature" link in the sidebar on that page. Here's a screenshot:
  • The Helper The Helper:
    I have reported it - I was wondering why nobody I have given sigs to over the last few years have used them
  • The Helper The Helper:
    Ghan has said he has fixed this. Monovertex please confirm this fix. This was only a problem with people that had signatures in the upper levels like not the special members but the respected members.
  • The Helper The Helper:
    Here is a better place to manage this stuff https://www.thehelper.net/account/account-details which I think should be way more visible
  • The Helper The Helper:
    I am hoping that online user count drop is finally that TikTok bot banned

      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