Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

[EO] Animation Blt Fast Errors


Helladen
 Share

Recommended Posts

This is a fix that will stop Blt Fast errors occurring when you cast a self-cast spell and move and it will prevent other ones from occurring that are similarly reproduced.

Author: Tala (I found the bug he fixed it)

**Client Only!**

In BltAnimation find this:
```
FrameCount = Animation(AnimInstance(Index).Animation).Frames(layer)
```
Add this below it:
```
If FrameCount < 1 Or AnimInstance(Index).FrameIndex(layer) < 1 Then Exit Sub
```
In CheckMapAnim find this:
```
FrameCount = Animation(animNum).Frames(layer)
```
Below it add this:
```
If FrameCount < 1 Then Exit Sub
```
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...