U
utunnels
Guest
http://www.chronocrash.com/forum/index.php?action=tpmod;dl=item86
This fixed some problems from 3822.
1. Sleep timer now works
2. New command nocmdcompatible in script.txt
nocmdcompatible 1 #default 0
When nocmdcompatible is enabled, the engine will try to merge @cmd within the same frame, which may not be compatible with old mod, so use with caution.
@cmd f1
@cmd f2
@cmd f3
frame data/chars/ffff/1.gif
Before:
if(frame==3)
{
f1();
}
if(frame==3)
{
f2();
}
if(frame==3)
{
f3();
}
Now:
if(frame==3)
{
f1();
f2();
f3();
return;
}
This fixed some problems from 3822.
1. Sleep timer now works
2. New command nocmdcompatible in script.txt
nocmdcompatible 1 #default 0
When nocmdcompatible is enabled, the engine will try to merge @cmd within the same frame, which may not be compatible with old mod, so use with caution.
@cmd f1
@cmd f2
@cmd f3
frame data/chars/ffff/1.gif
Before:
if(frame==3)
{
f1();
}
if(frame==3)
{
f2();
}
if(frame==3)
{
f3();
}
Now:
if(frame==3)
{
f1();
f2();
f3();
return;
}