Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CTRL+F: invToolsChi
- if (inv_Country >= 38 && inv_Country <= 50){
- price = toolsPrice[land] + randomnum;
- if (land == 6){
- if (price < 0){
- price *= -1;
- }
- price += 350;
- }
- }
- else if (inv_Country >= 26 && inv_Country <= 37){
- price = toolsPrice[land] * 1.25 + randomnum;
- if (land == 6){
- if (price < 0){
- price *= -1;
- }
- price += 350;
- }
- }
- else if (inv_Country >= 13 && inv_Country <= 25){
- price = toolsPrice[land] * 1.50 + randomnum;
- if (land == 6){
- if (price < 0){
- price *= -1;
- }
- price += 350;
- }
- }
- else if (inv_Country <= 12){
- price = toolsPrice[land] * 2 + randomnum;
- if (land == 6){
- if (price < 0){
- price *= -1;
- }
- price += 350;
- }
- }
- else if (inv_Country > 50){
- price = toolsPrice[land] * 0.75 + randomnum;
- if (land == 6){
- if (price < 0){
- price *= -1;
- }
- price += 350;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement