Coding on world
Coding on world
im just wondering if there is any way i can code, my own world, by this i mean adding new features and updates on my world, without necesairly having an update to put it on the whole galaxy, just wondering
- Magicfinger
- Staff
- Posts: 1078
- Joined: Tue Sep 30, 2003 10:38 am
- Location: here,there and everywhere
Sometime ago I started work on a mini-scripting language that will allow you to do some basic logic within gamescript.mts file. The idea is to allow you to do stuff something like..
or maybe
Theres quite a bit of work involved in it tho.. unfortunately i wouldnt expect it this year
Code: Select all
if ( PlayerHasWealth > 5000 )
{
GrantItem( "bonus item" );
}
Code: Select all
if ( PlayerBuilds( "Special Building" ) )
{
PrintMessage( "[PLAYER_NAME] has made the special building");
AddKudos( 1 );
}