Well the video isnt really anything intresting. I will make new one when its more intresting
Here is new screenshot.... Testing battle engine with some ripped models just to see how it perfoms..
Also title screen for Tech Demo project i will do with Flare Engine.. This title screen is 100% done with the scripting system
Source code for the title screen.
[GlobalScript]"TitleScreen"
[Trigger]
[IngoreFailures]1
[LoadAudio]"MusicTitle.mp3",1
[LoopAudio]1
[LoadImage]"2DTitle.png",2
[LoadImage]"2DArrow.png",3
[ScaleImage]2,[ScreenWidth],[ScreenHeight]
[Int]Sel
[Int]Increase
[Do]
[Sprite]2,0,0
[If]Var(Sel)=0
[Sprite]3,5,370
[Endif]
[If]Var(Sel)=1
[Sprite]3,35,420
[Endif]
[If]Var(Sel)=2
[Sprite]3,55,470
[Endif]
[If][Upkey]=1
[Decvar]Sel,1
[If]Var(Sel)<0
[SetVar]Sel,2
[Endif]
[Endif]
[If][Downkey]=1
[Incvar]Sel,1
[If]Var(Sel)>2
[SetVar]Sel,0
[Endif]
[Endif]
[If][Returnkey]=1
[If]Var(Sel)=1
[Exit]
[Endif]
[Endif]
[HandleKeys]
[Fastsync]
[Loop]
[DeleteAudio]1
[DeleteImage]2
[DeleteImage]3
[ChangeMap]"0001","0001_Ent"
[/Trigger]
[/GlobalScript]
It has not so many functionalitys yet. Cuz ill add the options and continue menu for it later.
Also i have done security decryption and encryption.. The encrypted string depends on your password you enter before encrypting.. And if the password is wrong when decrypting the decrypting will not give you correct results.
Here is encrypted version of my script:
ϯÕâËÔÚÂÈàÌâíÍ–ÈÑÝßÎÆÑáÊÓÑ”
ϼÛÜÐÚÓáÂ
ϱ×ÚØåÓµÆ×ÏçëÕçÑ™
Ï´ØÔÍ´ãÓÎÝÀ”ÆåçÝËÅÇÒçÚÔ“ÛÓ¥›œ¥
Ï´ØâÙ´ãÓÎÝÀ£
Ï´ØÔͼÛÐÌÓÀ”«´ÐÈÑÝßΡÞÝÌ��¤
Ï´ØÔͼÛÐÌÓÀ”«´ÐµÚÛâà¡ÞÝÌ��¥
Ï»ÌÔÕØ·ÜÆÕÈÏ«œÏÇËÛØÎáÅØÉâËÏ¥ËÇ×ÚÎØ×»ÓØÌÖ×Ï
ϱ×çÆÆÓÛ
ϱ×çƼÜÒ×ÓÄåÞ
ϬØÐ
Ï»ÙåÒçÓÌ—š“ž©
ϱÏпÔà—¸ÓÏ›¶
Ï»ÙåÒçÓ̘š˜ž¬§¤
Ï××ÒÙË
ϱÏпÔà—¸ÓÏ›¶¡
Ï»ÙåÒçÓ̘š–§¥¤¦¤
Ï××ÒÙË
ϱÏпÔà—¸ÓÏ›¶¢
Ï»ÙåÒçÓ̘š˜§¥¤«¤
Ï××ÒÙË
ϱÏÐÄÈÞÚÊçÀ¯ª
ϬÎÖßÔà̸ÓÏžª
ϱÏпÔà—¸ÓÏ›µ
Ï»Îç¿Ôà̸ÓÏž«
Ï××ÒÙË
Ï××ÒÙË
ϱÏÐÄ·ÝæÓÙÈëÖ¥
ϱ×ÖßÔà̸ÓÏžª
ϱÏпÔà—¸ÓÏ›·¢
Ï»Îç¿Ôà̸ÓÏž©
Ï××ÒÙË
Ï××ÒÙË
ϱÏÐÄÅÓãÚàÑÝÞéѱ™
ϱÏпÔà—¸ÓÏ›¶¡
ÏáÜÝÐ
Ï××ÒÙË
Ï××ÒÙË
Ï°ÊáÍßÓºÊçÖÏ
Ï®ÊæÝæçÝÈË
Ï´ØâÙÐ
ϬÎßÎçÓ°ÚÒÌáÖ¡
ϬÎßÎçÓ¸ÒÏÊ×Ö¢
ϬÎßÎçÓ¸ÒÏÊ×Ö£
Ï«ÑÔ×ÚÓ¼ÆÞÀ”© ¤¥Š••™£ž ijÑæ›
Ï—½åÒÚÕÔ×Ë
Ï—°ßØÕÏÛ¸ÑÕÛéäÑ
The Flare Engine has inbuilt decryption system so it needs the password what it will use for decryption.
Homever if you want to test your scripts or other files without encrypting it then you can just put the source file into the folder where the encrypted file should go and flare engine will automatically notice it and will not do any decryption! It will read from source file. But if source file does not exist it will read from real file.
So thats good way to test fast your scripts and etc stuff without encrypting the file
Click For Details!