User Tools

Site Tools


mr:cagedkobold_message2

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
mr:cagedkobold_message2 [2026/03/14 04:39] – Wiki standards compliance: Fix image references, links, and enhance mr: pages Qwen Assistantmr:cagedkobold_message2 [2026/03/14 04:39] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Caged Kobold Message 2 - Code Reference ======
 +
 +**"Hey buddy, you gotta help me out"** is one of the random phrases spoken by the [[mr:caged_kobold_mob|Caged Kobold]] NPC when the player interacts with him without the Ice Key.
 +
 +===== String Resources =====
 +English (values/strings_all.xml):
 +<code xml>
 +<string name="CagedKobold_Message2">Hey buddy, you gotta help me out</string>
 +</code>
 +
 +Russian (values-ru/strings_all.xml):
 +<code xml>
 +<string name="CagedKobold_Message2">Эй, приятель, ты должен помочь мне</string>
 +</code>
 +
 +Other languages:
 +  * **German**: Hey, du könntest mir hier heraushelfen
 +  * **Spanish**: Oye, amigo, tienes que ayudarme
 +  * **Greek**: Πρέπει να με βοηθήσεις
 +  * **French**: Hé, tu dois m'aider
 +  * **Polish**: Hej, musisz mi pomóc
 +  * **Portuguese (BR)**: Ei, você tem que me ajudar
 +  * **Indonesian**: Hei, kamu harus membantuku
 +  * **Italian**: Ehi, devi aiutarmi
 +  * **Japanese**: ねえ、助けてくれ
 +
 +===== Code Usage =====
 +Used in CagedKobold.java:
 +<code java>
 +sayRandomPhrase(R.string.CagedKobold_Message1,
 +                R.string.CagedKobold_Message2,
 +                R.string.CagedKobold_Message3);
 +</code>
 +
 +The message is selected randomly when:
 +  * Player interacts with Caged Kobold
 +  * Quest.given is true (quest already started)
 +  * Player does not have Ice Key item
 +
 +===== Related mr Entities =====
 +  * [[mr:caged_kobold_mob|Caged Kobold Mob]]
 +  * [[mr:cagedkobold_message1|Caged Kobold Message 1]]
 +  * [[mr:cagedkobold_message3|Caged Kobold Message 3]]
 +  * [[mr:ice_key_item|Ice Key Item]]
 +  * [[mr:immortal_npc|Immortal NPC]]
 +
 +{{tag> rpd strings npcs caged_kobold dialogue }}