I used the search button and found nothing on this topic…
My documents don’t seem to show up in-game and I can’t steal them, what should I do to fix this problem?
I used the search button and found nothing on this topic…
My documents don’t seem to show up in-game and I can’t steal them, what should I do to fix this problem?
If you gave the documents entity a ‘targetname’, then due to a bug it will not show up.
A solution is to ‘alertentity <targetname>’ it at the start, for example in the game_manager’s spawn scriptblock:
game_manager
{
spawn
{
wait 100 // Little wait to ensure everything is loaded
alertentity documents // Alertentity the entity so it shows up
... // Rest of code
}
}
If you are not using a targetname though, this problem should not occur. Are you sure they are not hidden beneath the surface or in a brush, or maybe have a blank model?