Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. // step 1. add the following code in, some where after line 125 and outside of other { statements }
  2.  
  3.  
  4.  
  5. var unfathomable = 0;
  6.  
  7. for(i=0; i<toon.quests.length; i++)
  8. {
  9. if(toon.quests[i]==55481 || toon.quests[i]==55869 || toon.quests[i]==55799)
  10. {
  11. unfathomable = unfathomable + 1;
  12. }
  13. }
  14.  
  15.  
  16. if(unfathomable == 3)
  17. {
  18. unfathomable = "\u2713";
  19. }
  20. else
  21. {
  22. unfathomable = unfathomable + "/3";
  23. }
  24.  
  25.  
  26. // step 2. add in the following to your output which starts with the line
  27. // var toonInfo = [
  28. // at around line 1180
  29.  
  30. unfathomable,
  31.  
  32.  
  33. // put it where you want it in the output, and add a column to your output to make room for it
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement