• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Resource icon

Resource [LWN] Living-World-News 1.1.0

Eyebull21

Novice
Member
Joined
Aug 8, 2019
Posts
28
Eyebull21 submitted a new resource:

[LWN] Living-World-News - A dynamic regional news system that makes your game world feel alive.

A dynamic regional news system that makes your game world feel alive.<br><br>News headlines change based on the player's progress, badges, story flags, and time of day — displayed on bulletin boards, TVs, and through NPC gossip.<br><br>Features:<br>• Bulletin Board scene (open with pbShowBulletinBoard)<br>• TV broadcast helper (pbShowNewsOnTV)<br>• NPC gossip helper (pbNewsGossip)<br>• Progress-based static news with condition procs<br>• Runtime dynamic news posting (e.g. after gym...

Read more about this resource...
 
If any issues please let me know, I also have discord but will link that soon. Best way for now is in github/issues.
 
Eyebull21 updated [LWN] Living-World-News with a new update entry:

v1.1.0 — Mystery Gift System & PokeNav Tab

Version 1.1.0 is now available!

What's new:

- Mystery Gift System — distribute redeemable codes to your players via Discord, social media, or GitHub releases. Players enter codes at a Pokemon Center NPC to receive items, Pokemon, or trigger game switches. Each code is one-use per save file

- PokeNav Tab — adds a NEWS tab to Simple PokeNav (if installed)

- Unread indicator — bulletin board now tracks whether new news has appeared since the player last visited

- Full step-by-step event...

Read the rest of this update entry...
 
I had an issue where the Headline text would overlap the the Category text, on the bulletin. If anyone else runs into this problem, I fixed it by adding the following to 000_Settings.rb:
Code:
Expand Collapse Copy
  #-----------------------------------------------------------------------------
  # Maximum characters per news category.
  #-----------------------------------------------------------------------------
  CATEGORY_MAX_CHAR = 10

And then changed line 99 in 004_BulletinBoard.rb from label_w = 90 to label_w = 12 * (LivingWorldNews::CATEGORY_MAX_CHAR + 1).

Then, you just set CATEGORY_MAX_CHAR equal to the longest category you have ("[BREAKING]" being 10, for example), and it will keep all the Headlines lined up, 1 space to the right of the longest Category.

If you don't care about them being aligned, you could ignore all that, and just change line 99 to label_w = bmp.text_size(cat_label).width + 12 instead, and then all headlines should be 1 space to the left of their own Category.
 
Back
Top