Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Fixed afterimages (again)
Still don't know what causes the sword trails to crash, if that happens please disable them in the FF7 DrG settings
ERROR: Sprite model's (trails/tube.vmt) not supported any more except in legacy temp ents (class C_BaseFlex#-1) (x6)
ERROR: Sprite model's (trails/laser.vmt) not supported any more except in legacy temp ents (class C_BaseFlex#-1) (x2)
ERROR: Sprite model's (trails/tube.vmt) not supported any more except in legacy temp ents (class C_BaseFlex#-1) (x6)
ERROR: Sprite model's (trails/laser.vmt) not supported any more except in legacy temp ents (class C_BaseFlex#-1) (x2)
ERROR: Sprite model's (trails/tube.vmt) not supported any more except in legacy temp ents (class C_BaseFlex#-1) (x6)
ERROR: Sprite model's (trails/laser.vmt) not supported any more except in legacy temp ents (class C_BaseFlex#-1) (x2)
and all of this bascially loops over and over
The warning is very self explanatory - you are (or something on your game) is using a sprite as a model on an entity.
I can try adding the entity's classname to the warning to maybe help pin it down.
your second response proves it, with the quote
"[C]:-1 means the crash happened inside C++ engine code (not Lua itself), likely because Lua gave it an invalid model — in your case, a deprecated sprite."
i'm looking into it though, please stay tuned
🔹 What this crash log is telling us
-Lua Stack Traces- ==================
Client 0.
DrawModel - [C]:-1
1. v - lua/entities/drg_roach_ff7_eb0021.lua:2744
2. (null) - lua/includes/modules/hook.lua:102
Server *Not in Lua call OR Lua has panicked*
MenuSystem *Not in Lua call OR Lua has panicked*
DrawModel / [C]:-1
This is the engine trying to draw a model.
[C]:-1 means the crash happened inside C++ engine code (not Lua itself), likely because Lua gave it an invalid model — in your case, a deprecated sprite.
lua/entities/drg_roach_ff7_eb0021.lua:2744
This is the line in your Lua script where it tried to draw or set the model.
This is almost certainly where the old sprite model is being used.
(null) - lua/includes/modules/hook.lua:102
Hooks are called every frame — if the invalid sprite is used here, it can spam the engine tens of thousands of times, causing lag.
Server *Not in Lua call OR Lua has panicked*
This means the Lua VM itself got overwhelmed or the engine panicked.
When Lua “panics,” it can no longer safely execute scripts until the error is handled or the engine restarts the Lua state.
Your previous error:
Sprite model's not supported any more except in legacy temp ents (x32752)
Shows that the script is repeatedly trying to use a deprecated sprite model.
The Lua crash log shows that the repeated attempts are overwhelming the Lua VM and/or engine, resulting in stack traces and panics.
✅ In short: yes, these are the same underlying problem — your Lua script is using old sprite models in a way the engine no longer allows, and doing so every frame is eventually crashing or lagging the game.
🔹 What to do
Locate the offending code (line 2744 in drg_roach_ff7_eb0021.lua).
Replace the old sprite model call with either:
render.DrawSprite() for visual effects, or
ParticleEffect() if it’s a temporary visual effect.
Add checks to prevent the function from running too often:
if not IsValid(self) then return end
Optional: Throttle the effect — don’t spawn/draw every frame if not needed.
unfortunately i have no idea what that error means, even googling it brought up like 3 results, all of which were mapping related
There was this error that has been flooding my console constantly whenever sephiroth wraps or something like that.. it sometimes massively barrages this error on certain wraps that sephiroth does
here is it
ERROR: Sprite model's not supported any more except in legacy temp ents (x32752)
The crash is associated with a popup message that tells you what is wrong.
***** OUT OF MEMORY! attempted allocation size: 81920 ****
Your game client was trying to render too many things at the same time with multicore rendering active.
Executable: C:\Program Files (x86)\Steam\steamapps\common\GarrysMod\bin\win64\gmod.exe
-Lua Stack Traces-
==================
Client
0. DrawModel - [C]:-1
1. v - lua/entities/drg_roach_ff7_eb0021.lua:2744
2. (null) - lua/includes/modules/hook.lua:102
Server
*Not in Lua call OR Lua has panicked*
MenuSystem
*Not in Lua call OR Lua has panicked*
and the reason i can't examine it myself is because rubat alone has the debug symbols for gmod, i could *look* at a dmp file but i'd have NO idea where in the code the game crashed
if you want i can send you the dmp files or anything else you'll need if you know a way
annoyingly, "play garry's mod" and "play garry's mod - 32 bit" are the same, and you need to specifically choose the 64 bit version
the reason i'm zoning in on this so much is because the 32 bit version of gmod is only allowed to allocate 4096mb of ram or 4 gigs, whereas yours is allocating roughly double that
beyond that i'm really genuinely unsure, because i've not found that this happens to anybody else, and i even halved the after image count for when he warps, since i remember you mentioning that had something to do with it
Here is what I have noticed so far
- The game crashes because it attempts to allocate exactly 8190MB of ram
- This happens more often in bigger and heavier map but still happens in all kinds of maps
- Regardless of using safe mode (disabling all addons besides this addon and it's dependeicies) it would still crash the game
- I have 32gb DDR5 5600 Ram and I was carefully monitoring my ram usage when using this addon, there was exactly 16200 MB of ram free, enough to allocate to the 8190MB of ram but still crashes
- vram has nothing to do with this as I had enough free space to accommodate the 8190MB aswell
I don't know tbh but I feel like that I need to put the blame on the dynamic hair and cloth physics which you gave to seiphiroth