Author Topic: VCE being extremely slow  (Read 1043 times)

So there's maybe 10,000 bricks, and my latency is a pretty decent 50.
However, every operation using VCE is slowed down like forget, and it's causing major issues with my events.

Take this example:

[     ] onActivate > Self > VCE_modVariable [Brick] [cost] [set] [200]

[33  ] onActivate > Self > VCE_modVariable [Brick] [temp] [set] [<var:cl:mercantile>]

[66  ] onActivate > Self > VCE_modVariable [Brick] [temp] [multiply] [2]

[99  ] onActivate > Self > VCE_modVariable [Brick] [cost] [subtract] [<var:br:temp>]

[132] onActivate > Client > centerPrint [<var:br:cost>]

Now, besides it occasionally not even doing the proper calculations, there are other times where it flat out doesn't work.  No center print, nothing.
I don't know if this is VCE or something else, but help is appreciated.



Noedit:
[132] onActivate > Client > centerPrint [Cost:  <var:br:cost>]

When I do this, it will show just "Cost:  " (rather than nothing, which shows it's the variable that's blank), so it's surely VCE messing something up.

First off, you don't need a 33ms delay. If the order is correct, 0ms may be used.

Also, this should work.

List all enabled add-ons.

First off, you don't need a 33ms delay. If the order is correct, 0ms may be used.

Also, this should work.

List all enabled add-ons.
Yeah, I added the delay to try and fix it.

I've never noticed this problem with the add-ons I usually enable, but:
And as far as enabled add-ons go, I have all of Legend's medieval packs, JVS, various brick packs, and the likes of which won't affect VCE.   As far as server mods go, there's nothing new that would cause this.  However, I also have Amade's bot events enabled, which I normally don't have enabled.

Try using just the default and VCE. If the problem continues, re-download the VCE, if it stops, try to pin point the add-on cause problems starting with the Bot Events.

Just a note: I've never had external problems with the VCE.

Ok, well I realized that my RTB hasn't been auto-updating things, and I was still using v8, as opposed to v11.

Noedit:
Even after the v11 update it still does it fairly often.


V8? V11? What?
of VCE.

And after updating VCe and removing the delays, it works 100% now.

so yeah.

Well if you are checking something make sure to use IfValue because IfVariable only works half the time, and if it does work, it can be delayed.
So if you wanted to check a gold variable for the client you'd have to use Self > IfValue <var:cl:gold> as opposed to using Client > IfVariable [Gold] [Amount]

Well if you are checking something make sure to use IfValue because IfVariable only works half the time and if it does work, it can be delayed.
So if you wanted to check a gold variable for the client you'd have to use Self > IfValue <var:cl:gold> as opposed to using Client > IfVariable [Gold] [Amount]

Oops, used quote instead of modify, because there is no modify button apparently.  =|