Autocast system lags

Faust

You can change this now in User CP.
Reaction score
123
JASS:
scope AutoCastSystem initializer I

globals
    private region R
endglobals

private struct ACS
    //! runtextmacro PUI()
    integer array orderidN [3] 
    integer array orderidP [2]
    integer array orderidAOE [2]
    integer array orderidI [1]
    unit caster
endstruct

private function C takes nothing returns boolean
    return udg_Race[GetPlayerId(GetOwningPlayer(GetFilterUnit()))+1] == "HoMM" and GetUnitState(GetFilterUnit(), UNIT_STATE_MAX_MANA) > 1 and IsUnitType(GetFilterUnit(), UNIT_TYPE_HERO) == true
endfunction

private function C1 takes nothing returns boolean
    return udg_Race[GetPlayerId(GetOwningPlayer(GetTriggerUnit()))+1] == "HoMM" and GetUnitState(GetTriggerUnit(), UNIT_STATE_MAX_MANA) > 1 and IsUnitType(GetTriggerUnit(), UNIT_TYPE_HERO) == true and GetIssuedOrderId() == 852166
endfunction

private function C2 takes nothing returns boolean
    return udg_Race[GetPlayerId(GetOwningPlayer(GetTriggerUnit()))+1] == "HoMM" and GetUnitState(GetTriggerUnit(), UNIT_STATE_MAX_MANA) > 1 and  GetOwningPlayer(GetTriggerUnit()) != Player(PLAYER_NEUTRAL_AGGRESSIVE) and IsUnitType(GetTriggerUnit(), UNIT_TYPE_HERO) == true 
endfunction

private function C3 takes nothing returns boolean
    return GetUnitCurrentOrder(GetTriggerUnit()) == OrderId("attack") or GetUnitCurrentOrder(GetTriggerUnit()) == OrderId("stop") or GetUnitCurrentOrder(GetTriggerUnit()) == 851973 or GetUnitCurrentOrder(GetTriggerUnit()) == 0 
endfunction

private function IsUnitAnEnemyP takes nothing returns boolean
    if IsPlayerEnemy(GetOwningPlayer(GetFilterUnit()), udg_Player) == false and GetUnitAbilityLevel(GetFilterUnit(), 'Aloc') == 0 and IsUnitType(GetFilterUnit(), UNIT_TYPE_ANCIENT) == false then
     return true
    else
     return false
    endif
endfunction

private function A2 takes nothing returns nothing
    local ACS dat = ACS[GetTriggerUnit()]
    local unit u
    set udg_Player = GetOwningPlayer(GetTriggerUnit())
    call GroupEnumUnitsInRange(G, GetUnitX(GetTriggerUnit()), GetUnitY(GetTriggerUnit()), 650, Condition(function IsUnitAnEnemy))
    set u = GetRandomUnit(G)
    if GetUnitTypeId(dat.caster) == 'H03C' then
     call GroupClear(G)
     call GroupEnumUnitsInRange(G, GetUnitX(GetTriggerUnit()), GetUnitY(GetTriggerUnit()), 650, Condition(function DummyFilter))
     call GroupRemoveUnit(G, dat.caster)
     set u = GetRandomUnit(G)
    endif
    if IssueTargetOrderById(dat.caster, dat.orderidN[0], u) == false then
      if IssueTargetOrderById(dat.caster, dat.orderidN[1], u) == false then
        call IssueTargetOrderById(dat.caster, dat.orderidN[2], u)
      endif
    endif
    call GroupClear(G)
    set udg_Player = GetOwningPlayer(GetTriggerUnit())
    call GroupEnumUnitsInRange(G, GetUnitX(GetTriggerUnit()), GetUnitY(GetTriggerUnit()), 650, Condition(function IsUnitAnEnemyP))
    call GroupRemoveUnit(G, dat.caster)
    set u = GetRandomUnit(G)
    if IssueTargetOrderById(dat.caster, dat.orderidP[0], u) == false then
      if IssueTargetOrderById(dat.caster, dat.orderidP[1], u) == false then
        //call IssueTargetOrderById(dat.caster, dat.orderidP[2], u)
      endif
    endif
    call GroupClear(G)
    set udg_Player = GetOwningPlayer(GetTriggerUnit())
    call GroupEnumUnitsInRange(G, GetUnitX(GetTriggerUnit()), GetUnitY(GetTriggerUnit()), 650, Condition(function IsUnitAnEnemy))
    set u = GetRandomUnit(G)
    if IssuePointOrderById(dat.caster, dat.orderidAOE[0], GetUnitX(u), GetUnitY(u)) == false then
     call IssuePointOrderById(dat.caster, dat.orderidAOE[1], GetUnitX(u), GetUnitY(u))
    endif
    call GroupClear(G)
    call IssueImmediateOrderById(dat.caster, dat.orderidI[0]) 
    set u = null
endfunction

private function A takes nothing returns nothing
    local ACS dat = ACS.create()
    set dat.caster = GetTriggerUnit()
    set ACS[dat.caster] = dat
    if GetUnitTypeId(GetTriggerUnit()) == 'H029' then // Mage
     set dat.orderidN[0] = 852600 // Fist of Wrath
     set dat.orderidP[0] = 852486 // Rigtheous Might
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02B' then // Storm Titan
     set dat.orderidAOE[0] = 852221 // Stormcaller
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03C' then // Djinn Sultan
     set dat.orderidN[0] = 852600 // RandomCB
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02Y' then // Shadow Matriarch
     set dat.orderidP[0] = 852486 // Rightous Might
     set dat.orderidN[0] = 852189 // Vulnerability
     set dat.orderidN[1] = 852135 // Slow
     set dat.orderidN[2] = 852581 // Confusion
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H036' then // Pit Lord
     set dat.orderidN[0] = 852189 // Vulnerability
     set dat.orderidAOE[0] = 852536 // Fireball
     set dat.orderidAOE[1] = 852122 // Meteor Shower
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H034' then // ArchLich
     set dat.orderidN[0] = OrderId("devour") // Decay
     set dat.orderidN[1] = OrderId("antimagicshell") // Suffering
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03I' then // Archmage
     set dat.orderidN[0] = 852600 // Fist of Wrath
     set dat.orderidP[0] = 852486 // Rigtheous Might
     set dat.orderidAOE[0] = 852536 // Fireball
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03J' then // Battlemage
     set dat.orderidN[0] = 852600 // Fist of Wrath
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02C' then // Djinn
     set dat.orderidN[0] = 852600 // Random Curse
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03D' then // Djinn Vizier
     set dat.orderidN[0] = 852600 // Wheel of Fortune
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02O' then // Druid
     set dat.orderidN[0] = OrderId("acidbomb") // Lightning Bolt
     set dat.orderidP[0] = OrderId("curse") // Divine Strength
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03O' then // Druid Elder
     set dat.orderidN[0] = OrderId("acidbomb") // Lightning Bolt
     set dat.orderidP[0] = OrderId("curse") // Divine Strength
     set dat.orderidAOE[0] = OrderId("carrionswarm") // Stone Spikes
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03N' then // High Druid
     set dat.orderidP[0] = OrderId("curse") // Divine Strength
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H032' then // Inquisitor
     set dat.orderidP[0] = OrderId("curse") // Divine Strength
     set dat.orderidP[1] = OrderId("creepthunderbolt") // Haste
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H035' then // Lich Master
     set dat.orderidN[0] = OrderId("antimagicshell") // Suffering
     set dat.orderidI[0] = OrderId("creepthunderclap") // Raise Dead
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02J' then // Pit Fiend
     set dat.orderidN[0] = 852189 // Vulnerability
     set dat.orderidAOE[0] = 852536 // Fireball
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02Z' or GetUnitTypeId(GetTriggerUnit()) == 'H02E' then // Shadow Mistress and Shadow Witch
     set dat.orderidP[0] = 852486 // Rightous Might
     set dat.orderidN[0] = 852189 // Vulnerability
     set dat.orderidN[1] = 852135 // Slow
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H039' then // Succubus Seducer
     set dat.orderidN[0] = OrderId("magicleash") // Seduce
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03M' then // Titan
     set dat.orderidN[0] = 852600 // Call Lightning
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02B' then // Storm Titan
     set dat.orderidAOE[0] = OrderId("deathanddecay") // Stormcaller
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H033' then // Zealot
     set dat.orderidP[0] = 852486 // Rightous Might
    endif
endfunction

private function A1 takes nothing returns nothing
    local ACS dat = ACS[GetTriggerUnit()]
    if dat != null then
     call dat.release()
    endif
endfunction


//===========================================================================
private function I takes nothing returns nothing
    local trigger t = CreateTrigger()
    set R = CreateRegion()
    call RegionAddRect(R, bj_mapInitialPlayableArea)
    call TriggerRegisterEnterRegion(t, R, Condition(function C))
    call TriggerAddAction(t, function A)
    set t = CreateTrigger()
    call TriggerRegisterAnyUnitWithinRange(t)
    call TriggerAddCondition(t, Condition(function C2))
    call TriggerAddCondition(t, Condition(function C3))
    call TriggerAddAction(t, function A2)
    set t = CreateTrigger()
    call TriggerRegisterAnyUnitEvent(t, EVENT_PLAYER_UNIT_ISSUED_ORDER)
    call TriggerAddCondition(t, Condition(function C1))
    call TriggerAddAction(t, function A1)
endfunction

endscope


When there are 10-15 or more towers that use the system to autocast, the game starts to lag when they use abilities.

Can anyone tell me why? And how to fix it?
It is very important, there should be even more units using it... :\
 

Faust

You can change this now in User CP.
Reaction score
123
Bump.
I never get help with the last piece of a race lol
 

Frozenhelfir

set Gwypaas = Guhveepaws
Reaction score
56
Let me get a basic concept down for this. I'm assuming this is a tower defense, which isn't important, but let me continue. You have towers that attack, and some of them have special abilities that you want them to use on every cooldown, correct? Or do they not have attacks? Some more details would help.
 

Faust

You can change this now in User CP.
Reaction score
123
Almost all abilities are triggered, spawning a dummy unit, which casts the real spell.
The created dummies fire the unit enter range evennt, so they cast all.

What makes you sure that a periodic event will make the lag go away?

File uploaded by request.
 

Faust

You can change this now in User CP.
Reaction score
123
Not :(

EDIT:
I made some edits on the current code, I THINK it's slightly better now, but I may be just seeing things :nuts:
JASS:
scope AutoCastSystem initializer I

globals
    private region R
endglobals

private struct ACS
    //! runtextmacro PUI()
    integer array orderidN [3] 
    integer array orderidP [2]
    integer array orderidAOE [2]
    integer array orderidI [1]
    unit caster
endstruct

private function C takes nothing returns boolean
    return udg_Race[GetPlayerId(GetOwningPlayer(GetFilterUnit()))+1] == "HoMM" and GetUnitState(GetFilterUnit(), UNIT_STATE_MAX_MANA) > 1 and IsUnitType(GetFilterUnit(), UNIT_TYPE_HERO) == true
endfunction

private function C1 takes nothing returns boolean
    return udg_Race[GetPlayerId(GetOwningPlayer(GetTriggerUnit()))+1] == "HoMM" and GetUnitState(GetTriggerUnit(), UNIT_STATE_MAX_MANA) > 1 and IsUnitType(GetTriggerUnit(), UNIT_TYPE_HERO) == true and GetIssuedOrderId() == 852166
endfunction

private function C2 takes nothing returns boolean
    return udg_Race[GetPlayerId(GetOwningPlayer(GetTriggerUnit()))+1] == "HoMM" and GetUnitState(GetTriggerUnit(), UNIT_STATE_MAX_MANA) > 1 and  GetOwningPlayer(GetTriggerUnit()) != Player(PLAYER_NEUTRAL_AGGRESSIVE) and IsUnitType(GetTriggerUnit(), UNIT_TYPE_HERO) == true 
endfunction

private function C3 takes nothing returns boolean
    return GetUnitCurrentOrder(GetTriggerUnit()) == OrderId("attack") or GetUnitCurrentOrder(GetTriggerUnit()) == OrderId("stop") or GetUnitCurrentOrder(GetTriggerUnit()) == 851973 or GetUnitCurrentOrder(GetTriggerUnit()) == 0 
endfunction

private function IsUnitAnEnemyP takes nothing returns boolean
    if IsPlayerEnemy(GetOwningPlayer(GetFilterUnit()), udg_Player) == false and GetUnitAbilityLevel(GetFilterUnit(), 'Aloc') == 0 and IsUnitType(GetFilterUnit(), UNIT_TYPE_ANCIENT) == false then
     return true
    else
     return false
    endif
endfunction

private function A2 takes nothing returns nothing
    local ACS dat = ACS[GetTriggerUnit()]
    local unit u
    set udg_Player = GetOwningPlayer(GetTriggerUnit())
    call GroupEnumUnitsInRange(G, GetUnitX(GetTriggerUnit()), GetUnitY(GetTriggerUnit()), 650, Condition(function IsUnitAnEnemy))
    set u = GetRandomUnit(G)
    if GetUnitTypeId(dat.caster) == 'H03C' then
     call GroupClear(G)
     call GroupEnumUnitsInRange(G, GetUnitX(GetTriggerUnit()), GetUnitY(GetTriggerUnit()), 650, Condition(function DummyFilter))
     call GroupRemoveUnit(G, dat.caster)
     set u = GetRandomUnit(G)
    endif
    if IssueTargetOrderById(dat.caster, dat.orderidN[0], u) == false then
    if IssueTargetOrderById(dat.caster, dat.orderidN[1], u) == false then
    if IssueTargetOrderById(dat.caster, dat.orderidN[2], u) == false then
    call GroupClear(G)
    set udg_Player = GetOwningPlayer(GetTriggerUnit())
    call GroupEnumUnitsInRange(G, GetUnitX(GetTriggerUnit()), GetUnitY(GetTriggerUnit()), 650, Condition(function IsUnitAnEnemyP))
    call GroupRemoveUnit(G, dat.caster)
    set u = GetRandomUnit(G)
    if IssueTargetOrderById(dat.caster, dat.orderidP[0], u) == false then
    if IssueTargetOrderById(dat.caster, dat.orderidP[1], u) == false then
    call GroupClear(G)
    set udg_Player = GetOwningPlayer(GetTriggerUnit())
    call GroupEnumUnitsInRange(G, GetUnitX(GetTriggerUnit()), GetUnitY(GetTriggerUnit()), 650, Condition(function IsUnitAnEnemy))
    set u = GetRandomUnit(G)
    if IssuePointOrderById(dat.caster, dat.orderidAOE[0], GetUnitX(u), GetUnitY(u)) == false then
    if IssuePointOrderById(dat.caster, dat.orderidAOE[1], GetUnitX(u), GetUnitY(u)) == false then
    call GroupClear(G)
    call IssueImmediateOrderById(dat.caster, dat.orderidI[0]) 
    endif
    endif
    endif
    endif
    endif
    endif
    endif
    set u = null
endfunction

private function A takes nothing returns nothing
    local ACS dat = ACS.create()
    set dat.caster = GetTriggerUnit()
    set ACS[dat.caster] = dat
    if GetUnitTypeId(GetTriggerUnit()) == 'H029' then // Mage
     set dat.orderidN[0] = 852600 // Fist of Wrath
     set dat.orderidP[0] = 852486 // Rigtheous Might
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02B' then // Storm Titan
     set dat.orderidAOE[0] = 852221 // Stormcaller
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03C' then // Djinn Sultan
     set dat.orderidN[0] = 852600 // RandomCB
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02Y' then // Shadow Matriarch
     set dat.orderidP[0] = 852486 // Rightous Might
     set dat.orderidN[0] = 852189 // Vulnerability
     set dat.orderidN[1] = 852135 // Slow
     set dat.orderidN[2] = 852581 // Confusion
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H036' then // Pit Lord
     set dat.orderidN[0] = 852189 // Vulnerability
     set dat.orderidAOE[0] = 852536 // Fireball
     set dat.orderidAOE[1] = 852122 // Meteor Shower
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H034' then // ArchLich
     set dat.orderidN[0] = OrderId("devour") // Decay
     set dat.orderidN[1] = OrderId("antimagicshell") // Suffering
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03I' then // Archmage
     set dat.orderidN[0] = 852600 // Fist of Wrath
     set dat.orderidP[0] = 852486 // Rigtheous Might
     set dat.orderidAOE[0] = 852536 // Fireball
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03J' then // Battlemage
     set dat.orderidN[0] = 852600 // Fist of Wrath
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02C' then // Djinn
     set dat.orderidN[0] = 852600 // Random Curse
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03D' then // Djinn Vizier
     set dat.orderidN[0] = 852600 // Wheel of Fortune
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02O' then // Druid
     set dat.orderidN[0] = OrderId("acidbomb") // Lightning Bolt
     set dat.orderidP[0] = OrderId("curse") // Divine Strength
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03O' then // Druid Elder
     set dat.orderidN[0] = OrderId("acidbomb") // Lightning Bolt
     set dat.orderidP[0] = OrderId("curse") // Divine Strength
     set dat.orderidAOE[0] = OrderId("carrionswarm") // Stone Spikes
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03N' then // High Druid
     set dat.orderidP[0] = OrderId("curse") // Divine Strength
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H032' then // Inquisitor
     set dat.orderidP[0] = OrderId("curse") // Divine Strength
     set dat.orderidP[1] = OrderId("creepthunderbolt") // Haste
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H035' then // Lich Master
     set dat.orderidN[0] = OrderId("antimagicshell") // Suffering
     set dat.orderidI[0] = OrderId("creepthunderclap") // Raise Dead
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02J' then // Pit Fiend
     set dat.orderidN[0] = 852189 // Vulnerability
     set dat.orderidAOE[0] = 852536 // Fireball
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02Z' or GetUnitTypeId(GetTriggerUnit()) == 'H02E' then // Shadow Mistress and Shadow Witch
     set dat.orderidP[0] = 852486 // Rightous Might
     set dat.orderidN[0] = 852189 // Vulnerability
     set dat.orderidN[1] = 852135 // Slow
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H039' then // Succubus Seducer
     set dat.orderidN[0] = OrderId("magicleash") // Seduce
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H03M' then // Titan
     set dat.orderidN[0] = 852600 // Call Lightning
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H02B' then // Storm Titan
     set dat.orderidAOE[0] = OrderId("deathanddecay") // Stormcaller
    elseif GetUnitTypeId(GetTriggerUnit()) == 'H033' then // Zealot
     set dat.orderidP[0] = 852486 // Rightous Might
    endif
endfunction

private function A1 takes nothing returns nothing
    local ACS dat = ACS[GetTriggerUnit()]
    if dat != null then
     call dat.release()
    endif
endfunction


//===========================================================================
private function I takes nothing returns nothing
    local trigger t = CreateTrigger()
    set R = CreateRegion()
    call RegionAddRect(R, bj_mapInitialPlayableArea)
    call TriggerRegisterEnterRegion(t, R, Condition(function C))
    call TriggerAddAction(t, function A)
    set t = CreateTrigger()
    call TriggerRegisterAnyUnitWithinRange(t)
    call TriggerAddCondition(t, Condition(function C2))
    call TriggerAddCondition(t, Condition(function C3))
    call TriggerAddAction(t, function A2)
    set t = CreateTrigger()
    call TriggerRegisterAnyUnitEvent(t, EVENT_PLAYER_UNIT_ISSUED_ORDER)
    call TriggerAddCondition(t, Condition(function C1))
    call TriggerAddAction(t, function A1)
endfunction

endscope
 

Frozenhelfir

set Gwypaas = Guhveepaws
Reaction score
56
I think you did that the exact opposite way I told you to... /facepalm :( I'll make a root system for you so you can actually use my template :D
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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!
    +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 Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top