Guest User

Untitled

a guest
Jun 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. //*** around line 978ish, (search for var profession1 = "none"; to find it) change the code block to:
  2.  
  3. var profession1 = "none";
  4. var prof1skill = "-";
  5. if (toon.professions.primary[0])
  6. {
  7. profession1 = toon.professions.primary[0].name;
  8. prof1skill = toon.professions.primary[0].rank;
  9. }
  10. var profession2 = "none";
  11. var prof2skill = "-";
  12. if (toon.professions.primary[1])
  13. {
  14. profession2 = toon.professions.primary[1].name;
  15. prof2skill = toon.professions.primary[1].rank;
  16. }
  17.  
  18. // in the output array (search for profession1, profession2, thumbnail, armory, ) change line to be:
  19.  
  20. profession1, prof1skill, profession2, prof2skill, thumbnail, armory,
  21.  
  22.  
  23. // you'll have to adjust the formula in the avatar function so it reads 2 columns over
  24. // ie: =hyperlink(CU3, image(CT3, 4, 30,30)) would be changed to =hyperlink(CW3, image(CV3, 4, 30,30))
  25. // you can change one cell and replicate the working formula to the rest of the cells by
  26. // selecting it and dragging the blue square that appears in the bottom right hand corner
Add Comment
Please, Sign In to add comment