Advertisement
Guest User

Untitled

a guest
Aug 30th, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. Oil price depends on the storage of it.
  2. Example: if(oilfactory_oilstored >= 0 && oilfactory_oilstored < 999) { oilfactory_oilprice = 55; }
  3.  
  4. Actual "dark oil holes" will refresh. Each hour it will regenerate 2000 oil.
  5.  
  6. Factory will have storage of 25.000 oil. If ammount is above 25.000 player cannot do the oil job.
  7.  
  8. Oil will evaporate 1% each 30 minutes. (oilfactory_oilstored/30)*1 = 1%
  9. Explanation: Total oil divided by 30 minutes = 1%
  10. Example: (1000/30)*1 = 33.3 oil aka 1% of the total (1000) amount
  11.  
  12. Actual oil rigs near the oil factory (las venturas oil setup) will generate extra 200 fuel per hour
  13.  
  14. Player receives 10% of the ammount he gets from a single oil draining (500-750 oil per drain).
  15. Calculation: calc = (oiljob_oildelivered[playerid]/oilfactory_oilprice)*10;
  16. Explanation: (Oil that was drained by player * current oil price read from oilfactory_oilstored) * 10 = 10 percent
  17. Money: best case scenario (750 fuel x 55 top price) will be 136$.
  18.  
  19.  
  20. Actual "pipe" on the oil platform is going to wok as real life one, draining oil from the ground when player is controling it.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement