- Joined
- Mar 1, 2012
- Messages
- 853
- Reaction score
- 164
Feel free to ask any questions here that you feel do not warrant its own thread.
Last edited by a moderator:
Here ~is it possible to use a sprite sheet, that uses 4 frames instead of 3 for animations
If you mean calling functions from the .NET framework, then no. It's possible in theory of course, but in practice nobody with sense will put the effort to do so.Will i be able using the net library in rgss3?
Yes. Win32API seems to work just as it did before.Is it still possible to call functions from a custom dll? I just tested it and gives an error.
#--------------------------------------------------------------------------
# * Display Skill/Item Use
#--------------------------------------------------------------------------
def display_use_item(subject, item)
if item.is_a?(RPG::Skill)
add_text(subject.name + item.message1)
add_text(subject.name)
change_color(system_color)
add_text(item.message1)
add_text(subject.name + "\\C[n]" + item.message1)