Guest User

Untitled

a guest
Feb 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.52 KB | None | 0 0
  1.  
  2. function reckoner(start,tolevel,havelvl)
  3.    local x = start
  4.    local lvl,y = {}
  5.    local havelvl = havelvl or {}
  6.    if 2 <= tolevel*1 then
  7.       y = x%4
  8.       x=(x-y)*3/4
  9.       lvl[1] = y
  10.       if havelvl[2] then
  11.          x=x+havelvl[2]
  12.       end
  13.    end
  14.    if 3 <= tolevel*1 then
  15.       y = x%3
  16.       x=(x-y)*2/3
  17.       lvl[2] = y
  18.       if havelvl[3] then
  19.          x=x+havelvl[3]
  20.       end
  21.    end
  22.    if 4 <= tolevel*1 then
  23.       y = x%3
  24.       x=(x-y)*2/3
  25.       lvl[3] = y
  26.       if havelvl[4] then
  27.          x=x+havelvl[4]
  28.       end
  29.    end
  30.    if 5 <= tolevel*1 then
  31.       y = x%3
  32.       x=(x-y)*2/3
  33.       lvl[4] = y
  34.       if havelvl[5] then
  35.          x=x+havelvl[5]
  36.       end
  37.    end
  38.    if 6 <= tolevel*1 then
  39.       y = x%2
  40.       x=(x-y)*1/2
  41.       lvl[5] = y
  42.       if havelvl[6] then
  43.          x=x+havelvl[6]
  44.       end
  45.    end
  46.    echo("SHIP TRADE RECKONER!\n")
  47.    echo(x.." final product at level ".. (tolevel*1>6 and 6 or tolevel))
  48.    echo("\nRemainders:\n")
  49.    local remainder = false
  50.    for i=1,5 do
  51.       if lvl[i] ~= 0 then
  52.          echo(lvl[i] .." level ".. i .." items left.\n")
  53.          remainder = true
  54.       end
  55.    end
  56.    if not remainder then echo("NONE!") end
  57. end
  58.  
  59.  
  60. --Example:
  61.  
  62. reckoner(60,5,{[4]=1,[5]=3})
  63.  
  64. --[[
  65. Translation: Starting with 60 level 1 items, going to level 5 item. Already have one level 4 item, and 3 level 5 items.
  66.  
  67. shows:
  68.  
  69. SHIP TRADE RECKONER!
  70. 17 final product at level 5
  71. Remainders:
  72. NONE!
  73.  
  74. Item levels:
  75.  
  76. Lvl 1                                      Lvl 4      
  77. Wool                                       Incense    
  78. Fur                                        Porcelain    
  79. Grain                                      Silk      
  80. Ore                                        Wine    
  81. Salt                                      
  82. Sandstone                                  
  83. Cotton                                    
  84.  
  85. Lvl 2                                      Lvl 5    
  86. Sugar                                      Perfume          
  87. Fruits                                     Tabac      
  88. Honey                                      Armaments
  89. Granite                                    
  90. Terracotta                                
  91. Hemp                                      
  92.                                            
  93. Lvl 3                                      Lvl 6      
  94. Kawhe                                      Gems      
  95. Glass                                      Spices      
  96. Ceramics                                  
  97. Marble            
  98. Tea
Add Comment
Please, Sign In to add comment