Home
Feedback Tracker
Search
Configure Global Search
Log In
Transactions
T142617
Change Details
Change Details
Old
New
Diff
``` if ( GetGame().IsClient() ) { GetGame().CreateObject( "Animal_CervusElaphus", Vector( 0, 0, 0 ), true, false ); } ```
``` if ( GetGame().IsClient() && GetGame().GetPlayer() ) { GetGame().CreateObject( "Animal_CervusElaphus", GetGame().GetPlayer().GetPosition(), true, false ); } ```
``` if ( GetGame().IsClient
() && GetGame().GetPlayer
() ) { GetGame().CreateObject( "Animal_CervusElaphus",
Vector( 0, 0, 0
GetGame().GetPlayer().GetPosition(
), true, false ); } ```
Continue