SHARE
TWEET

Fiend name visible in home and city

a guest Apr 15th, 2015 219 Never
  1. Fiend name visible in home and city:
  2.  
  3. 1) modify "#var_base" from line 110 (starting with $tentacle_state[1] variable)
  4. $tentacle_state[1] = $_font_col_rep[0] + ' crave' + $_font_closer
  5. $tentacle_state[2] = $_font_col_rep[5] + ' satisfied' + $_font_closer
  6.  
  7. $tentacle_name[0] = $_font_col_rep[1] + 'Rear gripper' + $_font_closer
  8. $tentacle_name[1] = $_font_col_rep[2] + 'Dark juvenile' + $_font_closer
  9. $tentacle_name[2] = $_font_col_rep[3] + 'Tentacle beast' + $_font_closer
  10. $tentacle_name[3] = $_font_col_rep[4] + 'Kraken' + $_font_closer
  11. $tentacle_name[4] = $_font_col_rep[5] + 'Leviathan' + $_font_closer
  12.  
  13. 2) modify "main_screen" from line 130 (the block dealing with the assistant box)
  14. IF pet_tentacle = 0:
  15.  IF assistant_state = 1:
  16.  *p '<div id = "assistant_short_ava"><a href = "EXEC: gt ''assistant_stat''"><img src = "<<$assistant[''ava'']>>.jpg"></a></div>'
  17.  *p '<div id = "assistant_short_stat"><<$house_mess[house_mess]>>
  18.  <<$cooked_food[cooked_food_plus]>>
  19.  Energy <<$stars[assistant_energy_plus]>>
  20.  <<$tentacle_state[tentacle_state]>>
  21. </div>'
  22.  else
  23.  *p '<div id = "assistant_short_ava"><img src = "content/pic/blank_ava.jpg"></div>'
  24.  *p '<div id = "assistant_short_stat"><<$house_mess[house_mess]>>
  25.  <<$cooked_food[cooked_food_plus]>>
  26.  
  27.  <<$tentacle_state[tentacle_state]>>
  28. </div>'
  29.  END
  30.  ELSE
  31.  IF assistant_state = 1:
  32.  *p '<div id = "assistant_short_ava"><a href = "EXEC: gt ''assistant_stat''"><img src = "<<$assistant[''ava'']>>.jpg"></a></div>'
  33.  *p '<div id = "assistant_short_stat"><<$house_mess[house_mess]>>
  34.  <<$cooked_food[cooked_food_plus]>>
  35.  Energy <<$stars[assistant_energy_plus]>>
  36.  <<$tentacle_name[tentacle_size]>> <<$tentacle_state[tentacle_state]>>
  37. </div>'
  38.  else
  39.  *p '<div id = "assistant_short_ava"><img src = "content/pic/blank_ava.jpg"></div>'
  40.  *p '<div id = "assistant_short_stat"><<$house_mess[house_mess]>>
  41.  <<$cooked_food[cooked_food_plus]>>
  42.  
  43.  <<$tentacle_name[tentacle_size]>> <<$tentacle_state[tentacle_state]>>
  44. </div>'
  45.  END
  46. END
  47.  
  48. 3) modify "city_screen" from line 17 (the block dealing with the assistant box)
  49. IF pet_tentacle = 0:
  50.  IF assistant_state = 1:
  51.  *p '<div id = "assistant_short_ava"><a href = "EXEC: gt ''assistant_stat''"><img src = "<<$assistant[''ava'']>>.jpg"></a></div>'
  52.  *p '<div id = "assistant_short_stat"><<$house_mess[house_mess]>>
  53.  <<$cooked_food[cooked_food_plus]>>
  54.  Energy <<$stars[assistant_energy_plus]>>
  55.  <<$tentacle_state[tentacle_state]>>
  56. </div>'
  57.  else
  58.  *p '<div id = "assistant_short_ava"><img src = "content/pic/blank_ava.jpg"></div>'
  59.  *p '<div id = "assistant_short_stat"><<$house_mess[house_mess]>>
  60.  <<$cooked_food[cooked_food_plus]>>
  61.  
  62.  <<$tentacle_state[tentacle_state]>>
  63. </div>'
  64.  END
  65.  ELSE
  66.  IF assistant_state = 1:
  67.  *p '<div id = "assistant_short_ava"><a href = "EXEC: gt ''assistant_stat''"><img src = "<<$assistant[''ava'']>>.jpg"></a></div>'
  68.  *p '<div id = "assistant_short_stat"><<$house_mess[house_mess]>>
  69.  <<$cooked_food[cooked_food_plus]>>
  70.  Energy <<$stars[assistant_energy_plus]>>
  71.  <<$tentacle_name[tentacle_size]>>
  72. </div>'
  73.  else
  74.  *p '<div id = "assistant_short_ava"><img src = "content/pic/blank_ava.jpg"></div>'
  75.  *p '<div id = "assistant_short_stat"><<$house_mess[house_mess]>>
  76.  <<$cooked_food[cooked_food_plus]>>
  77.  
  78.  <<$tentacle_name[tentacle_size]>>
  79. </div>'
  80.  END
  81. END
RAW Paste Data
Top