Runescape Woodcutting Calculator
Hello people, this is my first script. Its not a bot script but more of a tool for you. This is a very basic Runescape woodcutting calculator. It is simple and easy to use if you read the instructions. I know you can go on the web and find one however if you ever need one at hand, or just simple want to review please download. I would like to thank Coh3n for his awsome Tutorial in Simba which helped write this.
Simba Code:
program Runescape_Woodcutting_Calculator;
// Instructions
// 1) Insert your players Woodcutting XP amount in the XP :=.... ; Section ( Line 23)
// 2) Your desired amount of XP in the XP_WANTED := ... ; Section (Line 24 )
// 3) Run The Script!
// Do not change anything else expect where told too!
var
LOGS : Extended;
TYPE_OF_TREE : String;
XP : Integer;
XP_WANTED : Integer;
TREE_XP : Integer;
XP_NEEDED : Integer;
procedure Calculator;
begin
XP := 25000 //Type in the amount of Xp you have
XP_WANTED := 100000 ; //Type in the amount of Xp you need for your target
XP_NEEDED := XP_WANTED-XP;
TYPE_OF_TREE:= 'Magic';
LOGS := XP_NEEDED/250
Writeln('You need to cut ' + FloatToStr(LOGS) + ' Magic Trees! ');
TYPE_OF_TREE:= 'Normal'
LOGS := XP_NEEDED/25
Writeln('You need to cut ' + FloatToStr(LOGS) + ' Normal Trees! ');
TYPE_OF_TREE:= 'Oak'
LOGS := XP_NEEDED/37.5
Writeln('You need to cut ' + FloatToStr(LOGS) + ' Oak Trees! ');
TYPE_OF_TREE:= 'Willow'
LOGS := XP_NEEDED/67.5
Writeln('You need to cut ' + FloatToStr(LOGS) + ' Willow Trees! ');
TYPE_OF_TREE:= 'Maple'
LOGS := XP_NEEDED/100
Writeln('You need to cut ' + FloatToStr(LOGS) + ' Maple Trees! ');
TYPE_OF_TREE:= 'Yew'
LOGS := XP_NEEDED/175
Writeln('You need to cut ' + FloatToStr(LOGS) + ' Yew Trees! ');
Writeln(' ')
Writeln('Thank you for using Grumps Runescape Woodcutting Calculator!!!! ')
Writeln(' ')
end;
begin
ClearDebug;
Calculator;
end.
Thanks