Sorry if this is in the wrong place, wasn't sure where to put it.
I've just finally found my copy of ccoa's UMS script, and want to use it in a project. However, I don't have the demo file anymore, just the script, and I can't remember how to turn it on in the game. I'm pretty sure I have to use a call script to make it work, am I right? Can anyone tell me what the call script is to get the UMS working please? Thanks!
Edit: The regular tags in the script are working, but the shortcuts are not. Here is what that section of the script looks like:
Does anyone know why the shortcuts are not working properly? Thanks for any help you can give me.
Edit2: Never mind, have figured it out myself.
I've just finally found my copy of ccoa's UMS script, and want to use it in a project. However, I don't have the demo file anymore, just the script, and I can't remember how to turn it on in the game. I'm pretty sure I have to use a call script to make it work, am I right? Can anyone tell me what the call script is to get the UMS working please? Thanks!
Edit: The regular tags in the script are working, but the shortcuts are not. Here is what that section of the script looks like:
Code:
 @used_codes = ['\v', '\n', '\c', '\g', '\skip', '\m', '\height', '\width',
         '\jr', '\jc', '\jl', '\face', '\fl', '\fr', '\b', '\i', '\s',
         '\e', '\t1', '\t2', '\th', '\nm', '\font', '\p', '\w', '\ws',
         '\oa', '\oi', '\os', '\ow', '\tl', '\tr', '\tc', '\ignr',
         '\shk', '\slv', '\ind', '\inc']
        Â
  @shortcuts = {}
 end
Â
 def add_shortcut(shortcut, code)
  text = shortcut.downcase
  if !@used_codes.include?(text)
   @shortcuts[shortcut] = code
  end
 end
Â
 def run_shortcut ()
  $game_system.add_shortcut('\NONE', '\nm[]\face[]\fl\tc\width[510]')
  $game_system.add_shortcut('\p1', '\nm[Ailly]\face[f8_2]\fl\tl\width[510]')
  $game_system.add_shortcut('\p2', '\nm[Riyan]\face[ci5]\fl\tl\width[510]')
  $game_system.add_shortcut('\c1', '\nm[Brauna]\face[]\fl\tl\width[510]')
  $game_system.add_shortcut('\c2', '\nm[Innkeeper]\face[]\fr\tl\width[510]')
  $game_system.add_shortcut('\c3', '\nm[Shopkeeper]\face[]\fr\tl\width[510]')
  $game_system.add_shortcut('\i1', '\nm[Acquired]\face[]\fr\tc\width[250]')
  $game_system.add_shortcut('\i2', '\nm[Lost]\face[none]\fr\tc\width[250]')
  $game_system.add_shortcut('\info', '\nm[]\face[]\fr\tl\width[480]')
 end
Does anyone know why the shortcuts are not working properly? Thanks for any help you can give me.
Edit2: Never mind, have figured it out myself.