Guest User

Untitled

a guest
Oct 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. void OnLoadLevel()
  2. {
  3. Console_Output("OnLoadLevel.\n");
  4.  
  5. INIClass *InstaVehSpawnINI = Get_INI("../InstaVehSpawn.ini");
  6. // If no ini file was found
  7. if(!InstaVehSpawnINI)
  8. {
  9. // No ini was found
  10. Console_Output("Plugin Error: InstaVehSpawn.ini not found in the main FDS folder.\n");
  11. }
  12.  
  13. GetChatCommandsFromINI(InstaVehSpawn, "Vehicles", chatCommands);
  14.  
  15. }
Add Comment
Please, Sign In to add comment