New Problem! Woo!


(RazerMapper) #1

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?


(RayBan) #2

if you do this, it should work.


(Wezelkrozum) #3

maybe use the alertentity to the documents. Then these will show up.


(Flippy) #4

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?