Guest User

Untitled

a guest
Aug 18th, 2012
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. for(new i =0; i < sizeof Autohaus; i++)
  2. {
  3. new Fahrzeugdatei[60];
  4. format[Fahrzeugdatei,sizeof(Fahrzeugdatei),"Autohaus/%s.ini",Autohaus[i][Autohausname];
  5. if(!dini_Exists(Fahrzeugdatei))
  6. {
  7. dini_Create(Fahrzeugdatei);
  8. dini_Set(Fahrzeugdatei,"Besitzer","[SoS]ControlPanel");
  9. dini_IntSet(Fahrzeugdatei,"Kasse",Autohaus[i][Kasse]);
  10. }
  11. Autohaus[i][Kasse] = dini_Int(Fahrzeugdatei,"Kasse");
  12. format(Autohaus[i][Besitzer],MAX_PLAYERNAME_NAME,dini_get(Fahrzeugdatei,"Besitzer");
  13. return 1;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment