What's new

Gameobject crashes

bloodscope

Gold Supporter
17
2016
0
Hey, so i noticed this questions been asked a few times.. but idk if its me being an idiot or not i keep messing it up.. xD

So iv spawned an object that creates errors around gmisland, iv tried looking for the object's id etc under "GameObjects" in my mysql, however i cannot find the id?

Any assistance in fixing this issue would be amazing x.x
 

Mr. Satan

Admiral Squatbar
Mythical User
Head Moderator
Gold Supporter
MoP Premium
Superior Member
1,012
2016
196
Location
World Martial Arts Championships
Hey, so i noticed this questions been asked a few times.. but idk if its me being an idiot or not i keep messing it up.. xD

So iv spawned an object that creates errors around gmisland, iv tried looking for the object's id etc under "GameObjects" in my mysql, however i cannot find the id?

Any assistance in fixing this issue would be amazing x.x

What game object is it, and what errors is it creating?

If you're able to be around gmisland, then try
Code:
.gobject near 100
That should show you the nearby game objects that are spawned, and all you'd have to do is find the entry ID and type:
Code:
.gobject delete xxxxxx
Replace the x's with the entry ID of the game object.
Also, if that command doesn't work, try replacing "delete" with "remove", however delete should work.

If you are unable to be around gmisland, meaning it crashes or freezes, etc, then I don't believe it would be under the "GameObjects", it would be in a different section, which if the first method doesn't work, or of course you can't get near gmisland, I'll be sure to look for the proper location.

Just reply telling me if it's worked, or if you need the 2nd option, then I'll try to get that posted sometime tonight.
 
Last edited:

bloodscope

Gold Supporter
17
2016
0
I cant even get close to gmisland without it crashing =/ its like as soon as i get into rendering distance, boom crash.

--edit--
Also the object in question is the - 401882 - [nd_human_gate_closed]
 
Last edited:

Mr. Satan

Admiral Squatbar
Mythical User
Head Moderator
Gold Supporter
MoP Premium
Superior Member
1,012
2016
196
Location
World Martial Arts Championships
I cant even get close to gmisland without it crashing =/ its like as soon as i get into rendering distance, boom crash.

--edit--
Also the object in question is the - 401882 - [nd_human_gate_closed]

I've had some problems with bad gameobject spawning as well. I remember trying to spawn an airship, and I believe 2 of them crashed me, and the rest (except for the one I used) never even showed up, as if they didn't exist. I ended up looking in the MySQL database to remove it, so it shouldn't be too hard to find out where I did it.

Also, I just looked in the database, it turns out you were right, it is in the GameObject database, however to get to it, if you're using HeidiSQL, click "Show All" and scroll all the way to the bottom. Make sure to sort by 'guid', which I don't think it does this automatically, unless you've already done it yourself.
0e28e2b90e98539a862a1830df9435da.png


Any new game objects you spawn should be at the very bottom, which also means the latest game object you spawned, which is most likely the one crashing you, is probably the last one on the list.

Make sure to copy the row (by right clicking anywhere on the line and clicking 'copy') just in case it's the wrong gameobject. Copy it, delete it, then go in game and try it out, and if it crashes (which it shouldn't) just repeat the process but move one row up. I say this, but it honestly should just be the last one on the list. Make sure to sort by guid with lowest to highest (if you don't know how to do that, just click that tab either once or twice), and click 'show all' or else it could be hard to find it.
 
Top