i need help to find where i can find (User Name) code under Using Message in script Editor
what is variable (User Name). i want change User name position
example
http://up2.tersnetwork.com/do.php?img=1757
thanks.
[Ace] Help to find Using message code
● ARCHIVED · READ-ONLY
-
-
you want to change the order that messages are shown in battle?
like ... instead of ...
Dekita Attacks, you want...
Attacks Dekita?
Look in the Vocab script within the script editor. That has all the vocab settings for default engine code.
If it cannot be fully fixed from thre you would need to manually edit Window_BattleLog. -
yes..you want to change the order that messages are shown in battle?
like ... instead of ...
Dekita Attacks, you want...
Attacks Dekita?
Look in the Vocab script within the script editor. That has all the vocab settings for default engine code.
If it cannot be fully fixed from thre you would need to manually edit Window_BattleLog.
ah thanks i found it ^^
Code:#-------------------------------------------------------------------------- # * Display Skill/Item Use #-------------------------------------------------------------------------- def display_use_item(subject, item) if item.is_a?(RPG::Skill) add_text(item.message1 + subject.name) #subject.name <--- this what i'm looking for it ^^ unless item.message2.empty? wait add_text(item.message2) end else add_text(sprintf(Vocab::UseItem, item.name, subject.name)) end end -
This thread is being closed, due to being solved. If for some reason you would like this thread re-opened, please report this post and leave a message why. Thank you.