Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. /*
  2. File: fn_lavoroReset.sqf
  3. Author: Ermen07
  4.  
  5. You're not allowed to use or edit this file without permission from the author!
  6. */
  7.  
  8. // !!! ATTENZIONE !!! NON TOCCARE SCRIPT ALTAMENTE DELICATO !!! ATTENZIONE !!! //
  9.  
  10. // Wipe //
  11.  
  12. if (isNil {profileNamespace getVariable ["LavoroBeta",nil]} && isNil {profileNamespace getVariable ["LavoroWipe1",nil]} && isNil {profileNamespace getVariable ["LavoroWipe2",nil]} && isNil {profileNamespace getVariable ["LavoroWipe3",nil]}) exitWith {};
  13.  
  14. profileNamespace setVariable ["LavoroBeta",nil];
  15.  
  16. profileNamespace setVariable ["LavoroWipe1",nil];
  17.  
  18. profileNamespace setVariable ["LavoroWipe2",nil];
  19.  
  20. profileNamespace setVariable ["LavoroWipe3",nil];
  21.  
  22. // Raccolti //
  23.  
  24. // Tutorial //
  25.  
  26. profileNamespace setVariable ["PescheRaccolte",nil];
  27.  
  28. profileNamespace setVariable ["AranceRaccolte",nil];
  29.  
  30. // Agricoltore //
  31.  
  32. profileNamespace setVariable ["OrzoRaccolto",nil];
  33.  
  34. profileNamespace setVariable ["TabaccoRaccolto",nil];
  35.  
  36. // Allevatore //
  37.  
  38. profileNamespace setVariable ["ConigliRaccolti",nil];
  39.  
  40. // Pescatore //
  41.  
  42. profileNamespace setVariable ["AlgheRaccolte",nil];
  43.  
  44.  
  45. // Processati //
  46.  
  47. // Agricoltore //
  48.  
  49. profileNamespace setVariable ["GranoProcessato",nil];
  50.  
  51. profileNamespace setVariable ["OrzoProcessato",nil];
  52.  
  53. profileNamespace setVariable ["MaisProcessato",nil];
  54.  
  55. profileNamespace setVariable ["TabaccoProcessato",nil];
  56.  
  57. // Allevatore //
  58.  
  59. profileNamespace setVariable ["LatteProcessato",nil];
  60.  
  61. profileNamespace setVariable ["LanaProcessata",nil];
  62.  
  63.  
  64. // Venduti //
  65.  
  66. // Agricoltore //
  67.  
  68. profileNamespace setVariable ["OrzoMacinatoVenduto",nil];
  69.  
  70. profileNamespace setVariable ["FarinaVenduta",nil];
  71.  
  72. profileNamespace setVariable ["PopcornVenduti",nil];
  73.  
  74. profileNamespace setVariable ["SigaretteVendute",nil];
  75.  
  76. profileNamespace setVariable ["EcstasyVenduto",nil];
  77.  
  78. profileNamespace setVariable ["LsdVenduta",nil];
  79.  
  80. // Allevatore //
  81.  
  82. profileNamespace setVariable ["FormaggioVenduto",nil];
  83.  
  84. profileNamespace setVariable ["TessutidiLanaVenduti",nil];
  85.  
  86. profileNamespace setVariable ["TessutidiSetaVenduti",nil];
  87.  
  88. // Pescatore //
  89.  
  90. profileNamespace setVariable ["AlgheVendute",nil];
  91.  
  92. profileNamespace setVariable ["PesciVenduti",nil];
  93.  
  94. profileNamespace setVariable ["CoralliVenduti",nil];
  95.  
  96. profileNamespace setVariable ["PerleVendute",nil];
  97.  
  98. // Minatore //
  99.  
  100. profileNamespace setVariable ["CarboneVenduto",nil];
  101.  
  102. profileNamespace setVariable ["ZolfoVenduto",nil];
  103.  
  104. profileNamespace setVariable ["AlluminioVenduto",nil];
  105.  
  106. profileNamespace setVariable ["FerroVenduto",nil];
  107.  
  108. profileNamespace setVariable ["RameVenduto",nil];
  109.  
  110. profileNamespace setVariable ["UranioVenduto",nil];
  111.  
  112. // Salva-tore //
  113.  
  114. saveProfileNamespace;
  115.  
  116.  
  117. hint "Wipe Completato con Successo!";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement