admin Site Admin
Joined: 01 Jan 1970 Posts: 223
|
Posted: Sat Aug 25, 2007 12:15 am Post subject: 8/24/2007 |
|
|
Some bugs have been fixed, and new features are added!
Client has been updated, so please download the new kit from:
http://www.bladeengine.com/BladeEngine/samples/Default_VN_Kit.zip
New Updates: 2007-08-24
==========================
Roll-Back
==========================
Allowing / Prohibiting Roll-Back
@rollback_on
@rollback_off
Explanation:
After the execution of this command, replay function will be locked or released.
By executing this command at the starting of the game, it will disallow player to use roll-back function for the game.
==========================
Movie
==========================
Playing Movie
@movie_load [File Name]
@movie_play
Explaination:
Play movie (MPEG1,800x600). While movie is being played, script will pause. Movie can be skipped by right clicking.
Example:
@movie_load test.mpg
@movie_play
==========================
Variable and Conditional Statement
==========================
Controlling the Variable
$[0-99](operator)
Explanation:
You can use operators such as Increment, Decrement, and Substitution.
Please do not include space.
Example:
$[0]++
$[0]--
$[0]=0
Conditional Branch
if( Condition ){ -state 1- }else{ -state 2- }
Explanation:
Evaluate the Condition, and if true, -state 1- is executed.
If false, -state 2-is executed.
Available operators:
Equal ==
Compare < >
Unequal !=
Example:
if( $[0] < 0 )
{
Execute true statement
}else{
Execute false statement
}
*Counting } bug has been fixed with this ver. |
|