*Uploaded Ormus boesounds DLL code.
*Classic Blades of Exile changes : Game : Bug Fixes : - Giant Strength ability and Skill ability now use the ability strength rather than the item level to calculate effect. - Won't take damage when moving boats over damaging terrains (fire, cold, magic, poison, disease) anymore. - Won't take damage when horses refuses to enter a damaging terrain (fire, cold, magic) anymore. - Horses won't enter damaging terrains (fire, cold, magic) or "horse blocking" terrains when outdoors anymore. - Boom effects won't be displayed at random places when being damaged outdoors anymore. - Damage won't be displayed in boom animation when attacking invulnerable monsters, when they are, in fact, unharmed ... - The first pc won't become active with 0 AP anymore when a pc get killed by backshots. Changes : - All terrains and monsters sheets now loaded in memory to bypass storage sheet. That should speed up the game and fix some graphical oddities. Mac and Windows graphics can now be swapped on the fly (i.e without restarting the game). That also removes any graphical limitation in the game. - In the same way, PC graphics will now be drawn directly to the game gworld. Scenario Editor : - Dumping functions won't change current town/outdoor section anymore. - Finished porting the file IO functions to 32 bits. - Added a rudimentary custom intro picture behavior : if the intro picture is set to 100, the first icon on the custom sheet will be displayed in the scenario selection menu. Scenario intro pics must be drawn on the same scale as talk icons. - Whenever the “Place Random Items” function is used, the editor will inform the user that it could not place all items because the town item # limit has been reached, regardless of how many items are actually in the town. That has been fixed (the message now displays only if the max number of items is indeed reached). - Cleaned the ressources (smaller executable). git-svn-id: http://openexile.googlecode.com/svn/trunk@93 4ebdad44-0ea0-11de-aab3-ff745001d230
This commit is contained in:
@@ -59,7 +59,6 @@ Boolean handle_startup_press(POINT the_point)
|
||||
case 1:
|
||||
draw_startup(0);
|
||||
start_new_game();
|
||||
update_pc_graphics();
|
||||
draw_startup(0);
|
||||
break;
|
||||
|
||||
@@ -175,7 +174,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR, int nCmd
|
||||
|
||||
RegisterClass(&wndclass2);
|
||||
|
||||
mainPtr = CreateWindow (szAppName, "Classic Blades of Exile Beta 1",
|
||||
mainPtr = CreateWindow (szAppName, "Classic Blades of Exile Beta 1.1",
|
||||
WS_OVERLAPPEDWINDOW,
|
||||
0,
|
||||
0,
|
||||
@@ -290,8 +289,8 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR, int nCmd
|
||||
delete data_store2;
|
||||
delete data_store;
|
||||
|
||||
RemoveFontResource("maidword.ttf"); // remove the font from the system font table
|
||||
|
||||
lose_graphics();
|
||||
|
||||
FreeLibrary((HMODULE) boeSoundsDLL);
|
||||
|
||||
return msg.wParam;
|
||||
@@ -629,7 +628,6 @@ Boolean handle_menu (short item, HMENU)
|
||||
draw_startup(0);
|
||||
}
|
||||
start_new_game();
|
||||
update_pc_graphics();
|
||||
draw_startup(0);
|
||||
break;
|
||||
case 6:
|
||||
@@ -662,7 +660,6 @@ Boolean handle_menu (short item, HMENU)
|
||||
choice = char_select_pc(0,0,"New graphic for who?");
|
||||
if (choice < 6)
|
||||
pick_pc_graphic(choice,1,0);
|
||||
update_pc_graphics();
|
||||
initiate_redraw();
|
||||
break;
|
||||
|
||||
@@ -713,7 +710,6 @@ Boolean handle_menu (short item, HMENU)
|
||||
if ((i = FCD(1053,0)) == 2)
|
||||
adven[choice].kill(0);
|
||||
}
|
||||
update_pc_graphics();
|
||||
initiate_redraw();
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user