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
  • No one is chatting at the moment.
  • 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!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • 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 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