What's the console command to spawn an antlion worker?
4 replies, posted
I'm trying to make a neat-o mod, but I need the console command to spawn the Antlion Worker in Garry's Mod :v:
Why does it have to be a console command, why not trough lua?
Anyway :
[code]ent_create npc_antlion_worker[/code]
-Snip-
If you were to do it through Lua it would be:
[lua]
local ent = ents.Create( "npc_antlion_worker" )
ent:SetPos( Vector( ) )
ent:Spawn( )
ent:Activate( )
[/lua]
Thanks, I think I fixed it for now :)
Sorry, you need to Log In to post a reply to this thread.