Loading

Paste #pupmly3he

  1.  
  2.  
  3.  
  4. local goal_text, goal_news_text;
  5. if (this.reward > 0) {
  6.     goal_text      = GSText(GSText.STR_COMPANY_GOAL_REWARD,      cargo.cid, this.wanted_amount, destination_string,      this.reward);
  7.     goal_news_text = GSText(GSText.STR_COMPANY_GOAL_REWARD_NEWS, cargo.cid, this.wanted_amount, destination_string_news, this.reward);
  8. } else {
  9.     goal_text      = GSText(GSText.STR_COMPANY_GOAL,      cargo.cid, this.wanted_amount, destination_string);
  10.     goal_news_text = GSText(GSText.STR_COMPANY_GOAL_NEWS, cargo.cid, this.wanted_amount, destination_string_news);
  11. }
  12.  
  13. local goal_text, goal_news_text;
  14. if (this.reward > 0) {
  15.     goal_text      = GSText(GSText.STR_COMPANY_GOAL_REWARD,
  16.                             cargo.cid, this.wanted_amount, destination_string,      this.reward);
  17.  
  18.     goal_news_text = GSText(GSText.STR_COMPANY_GOAL_REWARD_NEWS,
  19.                             cargo.cid, this.wanted_amount, destination_string_news, this.reward);
  20. } else {
  21.     goal_text      = GSText(GSText.STR_COMPANY_GOAL,
  22.                             cargo.cid, this.wanted_amount, destination_string);
  23.  
  24.     goal_news_text = GSText(GSText.STR_COMPANY_GOAL_NEWS,
  25.                             cargo.cid, this.wanted_amount, destination_string_news);
  26. }

Comments