Help me with lag

Do you understand what i'm asking?

  • Yes

    Votes: 4 100.0%
  • No

    Votes: 0 0.0%

  • Total voters
    4
  • Poll closed .

Evote

New Member
Reaction score
4
This lags like a bum DOSEN"T LEAK.??
PHP:
Sliding Copy
    Events
        Time - Every 0.01 seconds of game time
        Unit - A unit Is issued an order targeting a point
    Conditions
    Actions
        Unit - Make (Triggering unit) face (Target point of issued order) over 0.01 seconds
        Unit Group - Pick every unit in All_Units and do (Actions)
            Loop - Actions
                Set point[(Player number of (Owner of (Picked unit)))] = (Position of (Picked unit))
                Set X[(Player number of (Owner of (Picked unit)))] = (X of point[(Player number of (Owner of (Picked unit)))])
                Set Y[(Player number of (Owner of (Picked unit)))] = (Y of point[(Player number of (Owner of (Picked unit)))])
                Set THETA[(Player number of (Owner of (Picked unit)))] = (Facing of (Picked unit))
                Set THETA[(Player number of (Owner of (Picked unit)))] = (THETA[(Player number of (Owner of (Picked unit)))] - 90.00)
                Set THETA[(Player number of (Owner of (Picked unit)))] = (THETA[(Player number of (Owner of (Picked unit)))] x -1.00)
                Set X[(Player number of (Owner of (Picked unit)))] = (X[(Player number of (Owner of (Picked unit)))] + (Frame_Rate[(Player number of (Owner of (Picked unit)))] x (Sin(THETA[(Player number of (Owner of (Picked unit)))]))))
                Set Y[(Player number of (Owner of (Picked unit)))] = (Y[(Player number of (Owner of (Picked unit)))] + (Frame_Rate[(Player number of (Owner of (Picked unit)))] x (Cos(THETA[(Player number of (Owner of (Picked unit)))]))))
                Set point[(Player number of (Owner of (Picked unit)))] = (Point(X[(Player number of (Owner of (Picked unit)))], Y[(Player number of (Owner of (Picked unit)))]))
                If (((Unit-type of (Picked unit)) Equal to Arrgh Shit My Head's on Fire.) and ((Terrain type at point[(Player number of (Owner of (Picked unit)))]) Equal to Northrend - Ice)) then do (Unit - Move (Picked unit) instantly to point[(Player number of (Owner of (Picked unit)))]) else do (Do nothing)
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        And - All (Conditions) are true
                            Conditions
                                (Unit-type of (Picked unit)) Equal to Arrgh Shit My Head's on Fire.
                                (Terrain type at point[(Player number of (Owner of (Picked unit)))]) Equal to Northrend - Snow
                    Then - Actions
                        Unit - Kill (Picked unit)
                    Else - Actions
                        Do nothing
        Custom script:   call RemoveLocation (udg_point[1])
        Custom script:   call RemoveLocation (udg_point[2])
        Custom script:   call RemoveLocation (udg_point[3])
        Custom script:   call RemoveLocation (udg_point[4])
        Custom script:   call RemoveLocation (udg_point[5])
        Custom script:   call RemoveLocation (udg_point[6])
        Custom script:   call RemoveLocation (udg_point[7])
        Custom script:   call RemoveLocation (udg_point[8])
        Custom script:   call RemoveLocation (udg_point[9])
        Custom script:   call RemoveLocation (udg_point[10])
        Custom script:   call RemoveLocation (udg_point[11])
        Custom script:   call RemoveLocation (udg_point[12])
know one say i have plenty of sliding triggers which work fine, this one shouldn't lag cause it has one less leak than the others i removed point of offset and did some trigg using sin and cos it works but abit dodgey(laggy).
Don't say i should make the perotic event 0.03 or 0.02 no point cause inbetween each timing it counts in .01 so 1000x0.01=one second thats how it is prosessed.


for example:
if the event was every 1 second it wound process the same amount of times as .01. except the actions. Why does it lagg!!!!
btw u can steel my trig (not as in trigger as in the maths subject)
 

Tinki3

Special Member
Reaction score
418
Using a periodic timer of 0.01 seconds would most probably lag any trigger that has alot of actions.

In your case, your setting what looks to be like 9-12 variables, even worse, your setting those variables for each picked unit of that unit group, and even worse, your picking every unit in a unit group.

I don't see why you would want to even think about using 0.01 seconds, let alone using it..

EDIT: Your basically telling the trigger you want lag.
 

Chocobo

White-Flower
Reaction score
409
Unit Group makes lag. (maybe)

By the way, why 2 events in one? Not that good, because when you spam orders at one point, it will make the trigger run faster. (too much exec count?)

Try to remove the actions from the unit group, and put only one action, and see what happens. If it keeps lagging, it is the cause. Else I don't see where it can be.
If it's the cause, try to store the values of Cos and Sin in variables, and use Cos[(Facing of (Picked unit))] or Sin[(Facing of (Picked unit))] instead of calculating every 0.01 seconds too many times (maybe +1500 arithmetic orders every 0.01 seconds?)


Also, what's the point of the loop? The question is pretty easy to understand.
 

Evote

New Member
Reaction score
4
yer i want it to go faster when u turn :) it makes turn smoother.
i carn't get rid of loop
Thanks i hope it'll stop lagging
i think i can remove thoose set ones from unit group with a player group will that lag still should i do it?
Edit 2: Dw i carn't do that... cause i have owner of picked unit and just normal picked unit.
i tryed some reduction code to fix it lol i'm desperate.
Sliding Copy
Events
Time - Every 0.01 seconds of game time
Unit - A unit Is issued an order targeting a point
Conditions
Actions
Unit - Make (Triggering unit) face (Target point of issued order) over 0.01 seconds
Unit Group - Pick every unit in All_Units and do (Actions)
Loop - Actions
Set point[(Player number of (Owner of (Picked unit)))] = (Position of (Picked unit))
Set X[(Player number of (Owner of (Picked unit)))] = (X of point[(Player number of (Owner of (Picked unit)))])
Set Y[(Player number of (Owner of (Picked unit)))] = (Y of point[(Player number of (Owner of (Picked unit)))])
Set THETA[(Player number of (Owner of (Picked unit)))] = (((Facing of (Picked unit)) - 90.00) x -1.00)
Set X[(Player number of (Owner of (Picked unit)))] = (X[(Player number of (Owner of (Picked unit)))] + (Frame_Rate[(Player number of (Owner of (Picked unit)))] x (Sin(THETA[(Player number of (Owner of (Picked unit)))]))))
Set Y[(Player number of (Owner of (Picked unit)))] = (Y[(Player number of (Owner of (Picked unit)))] + (Frame_Rate[(Player number of (Owner of (Picked unit)))] x (Cos(THETA[(Player number of (Owner of (Picked unit)))]))))
Set point[(Player number of (Owner of (Picked unit)))] = (Point(X[(Player number of (Owner of (Picked unit)))], Y[(Player number of (Owner of (Picked unit)))]))
If (((Unit-type of (Picked unit)) Equal to Arrgh Shit My Head's on Fire.) and ((Terrain type at point[(Player number of (Owner of (Picked unit)))]) Equal to Northrend - Ice)) then do (Unit - Move (Picked unit) instantly to point[(Player number of (Owner of (Picked unit)))]) else do (Do nothing)
If (((Unit-type of (Picked unit)) Equal to Arrgh Shit My Head's on Fire.) and ((Terrain type at point[(Player number of (Owner of (Picked unit)))]) Equal to Northrend - Snow)) then do (Unit - Kill (Picked unit)) else do (Do nothing)
Custom script: call RemoveLocation (udg_point[1])
Custom script: call RemoveLocation (udg_point[2])
Custom script: call RemoveLocation (udg_point[3])
Custom script: call RemoveLocation (udg_point[4])
Custom script: call RemoveLocation (udg_point[5])
Custom script: call RemoveLocation (udg_point[6])
Custom script: call RemoveLocation (udg_point[7])
Custom script: call RemoveLocation (udg_point[8])
Custom script: call RemoveLocation (udg_point[9])
Custom script: call RemoveLocation (udg_point[10])
Custom script: call RemoveLocation (udg_point[11])
Custom script: call RemoveLocation (udg_point[12])
Also i would add rep to you guys but i already have be4 so i won't let me lol.
 

Evote

New Member
Reaction score
4
dw i fixed it it was selecting 2 owned by the same player lol
Thanks all
 

Steel

Software Engineer
Reaction score
109
Give enough information to process WC3 will lag. My floating bars system lags with a .02 Timer if you have more than 10 of them. It is optimized perfection of JASS and has no leaks, but it still causes lag, massive lag. So the system you have is just ineffective. There are a bunch of tutorials over at Wc3Campaigns on sliding.
 

Omni

Ultra Cool Member
Reaction score
37
why dont you remove the points with an integer A loop
wouldnt that be more faster or somehing (at least look better)
 

Evote

New Member
Reaction score
4
and alot of the tutorals were posted by me i just trying something new
i made a calculater to find the point of offset without minor leaks
 
U

Ur-Quan

Guest
By the way groups leak.
Just use
Code:
Custom script:   set bj_wantDestroyGroup = true
before setting the group.
It may be the cause of lag.
Group leaks are the biggest ones:D.
 

Evote

New Member
Reaction score
4
No lol All_Units is a varable name so i set in in the intilisation. I already added that in inistilisation.
And thanks anyway +rep
 
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

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top