Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
https://plugin.tyrano.jp/en
then go to the bottom of the page and click see all plug ins.
its on the fourth page second row,last plug in that says tyranostory
its in Japanese. so use google chrome to translate it.
I can translate using Google and know a bit of coding, that's why I think those plugins need to be add to TB in a future update or translate for non japanese users, there's an even an e-book (paid) teaching intermediare/advanced techniques. A lot of cool stuff was made or released so far and the updates need to bring those, and not just aesthetic assets.
TB has a great potencial that's why I didn't give up of it yet, hope things get better soon.
Step 1: Download Tyranostory https://tyrano.jp/download/story/tyrano_story_v106.zip
Step 2: Go to data / others / plugin / chat_story in the file you just download
Step 3: Take the chat_folder and move it to "plugins" folder IN YOUR GAME PROJECT FILE
Step 4 : To test, open a scenario and add "Tyranoscript" component ( or iscript i dont rmb)
Step 5: Put this code in the script:
[plugin name="chat_story"]
[font size=14 ]
[chat_config layer=2 zindex=1 top=200 left=470 width=375 height=750 under_height=400 face_width=40 name_font_size=10 margin_top=0 ]
[chat_talk pos="center" text="Hyunwoo" ]
[chat_talk pos="right" bgcolor="0x14adff" name="Me" text="Hey Hyunwoo" face="chat/donation.png" ]
[chat_talk pos="right" bgcolor="0x14adff" name="Me" text="I heard about what happened..." face="chat/donation.png" ]
[chat_talk pos="right" bgcolor="0x14adff" name="Me" text="Can you come to school? We should talk!" face="chat/donation.png" ]
[chat_talk pos="right" bgcolor="0x14adff" name="Me" text="Can I meet you today?" face="chat/donation.png" ]
[chat_talk pos="left" delay=3000 name="Hyunwoo" text="Haven't you wasted enough<p>of your time on me?" face="chat/dogfight.png" ]
[chat_talk pos="left" name="Hyunwoo" text="I don't think I have anything to say to you" face="chat/dogfight.png" ]
[chat_talk pos="right" bgcolor="0x14adff" name="Me" text="But I do " face="chat/donation.png" ]
[chat_talk pos="right" bgcolor="0x14adff" name="Me" text="I will wait for you <p>in class !" face="chat/donation.png" ]
[chat_talk pos="right" bgcolor="0x14adff" name="Me" text="Let me know where you<p>wanna meet..." face="chat/donation.png" ]
[chat_talk pos="left" delay=3000 name="Hyunwoo" text="Don't bother waiting for me<p>Just go home!" face="chat/dogfight.png" ]
[chat_clear time=300 ]
EXPLAINATION FOR SOME BASIC PART:
*[plugin name="chat_story"] => call the plugin
*[chat_config layer=2 zindex=1 top=200 left=470 width=375 height=750 under_height=400 face_width=40 name_font_size=10 margin_top=0 ] => size of the chat
*[chat_talk pos="right" bgcolor="0x14adff" name="Me" text="Hey Hyunwoo" face="chat/donation.png" ] => chat color, position, text and the little pfp by the text ( you need to manually adding those image file into your project image directory )
*[chat_talk pos="left" delay=3000....] => delay the chat, make the character have dot dot dot in the bubble for a certain amount of time
*[chat_clear time=300 ] => TO CLEAR/remove the chat
MORE TAGS can be found here: https://tyrano.jp/story/story_2
About making the chat appear in a little phone like they show, I just use the show image component with a transparent phone image added to the image directory.
Hope that help!