RageMP doesn't passes the handle for DrawScaleformMovieFullscreen and others #91
Labels
priority: p1 high
A bug that might cause crashes or a highly needed feature
status: completed
The feature has been completed of the bug has been patched
type: bug
This is a bug
Milestone
BaseScaleform uses incorrect native parameters; Consider replacing with RAGE.Game.Graphics
RAGE.Game.Graphics.RequestScaleformMovie
RAGE.Game.Graphics.CallScaleformMovieMethod
- BeginRAGE.Game.Graphics.PopScaleformMovieFunctionVoid
End (VOID)RAGE.Game.Graphics.PopScaleformMovieFunction
End (int)For whatever reason, you're calling the draw function without a referenced handle returned from the Engine; Thus nothing will ever be drawn for anyone using this within RageMP (see below)
Invoker.Invoke(0x0DF606929C105BE1, 255, 255, 255, 255, 0)
void DrawScaleformMovieFullscreen(int scaleform, int red, int green, int blue, int alpha, int unk);
Thus should be
Invoker.Invoke(0x0DF606929C105BE1, Handle, 255, 255, 255, 255, 0)
The text was updated successfully, but these errors were encountered: