Save-Point
CTB - A Final Fantasy X-like Battle System, Version 3.2 - Printable Version

+- Save-Point (http://save-point.org)
+-- Forum: Material Development (/forum-8.html)
+--- Forum: Scripts Database (/forum-39.html)
+--- Thread: CTB - A Final Fantasy X-like Battle System, Version 3.2 (/thread-2298.html)



CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - Ace - 02-05-2010 11:28 PM

press the arrow left button in battle...


CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - Charlie Fleed - 02-06-2010 03:33 AM

If you press LEFT there's a second command window with these commands.


CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - zackxxi - 02-06-2010 03:42 AM

I may have overlooked it, if so I am sorry. But is there a way to make it where the actors do not run forward/to the ally to cast spells and use items? I think I recall seeing it somewhere but I can't find it now. =( Sorry to bug you over this.


CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - Charlie Fleed - 02-06-2010 03:50 AM

Sure, it's in the configuration of Animated Battlers. Look for MNK_STATIONARY_SKILLS and MNK_STATIONARY_ITEMS.


CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - Guest - 02-06-2010 03:51 AM

Darn Charlie. You beat me to it.


CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - Charlie Fleed - 02-06-2010 03:54 AM

Silne30 Wrote:Darn Charlie. You beat me to it.

try again Grinning


CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - zackxxi - 02-06-2010 04:06 AM

Ok, im new to scripting. Is there a certain thing I can put in the box to where it makes all spells and item use stationary? So I dont have to put each number of every spell. =) Thanks for the time.


CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - Charlie Fleed - 02-06-2010 04:16 AM

I'm afraid there isn't.
However you can try this. Make a new empty project and create an event with the following script event command:
Code:
MAX=200
outfile = File.new("list.txt", "a")
list=Array.new(MAX-1)
list.each_index { |index|
  list[index]=index+1
}
outfile.write sprintf ("%p",list)
outfile.write "\n"
outfile.close

Run the game and activate the event. Close it. You'll see a text file with the list. Change the MAX value to meet your needs.


CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - zackxxi - 02-06-2010 04:33 AM

Awesome! Thanks a ton. =) By the way. What formula do you use for drakoken to determine if it learns the skill?(if you dont mind me asking)


CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - Charlie Fleed - 02-06-2010 04:42 AM

rand(100)*user.int - rand(100)*self.int > 0

it relies on the comparison of the int values, with some randomness added to it