![]() |
Mirage Source 4 - Printable Version +- Mirage Source (https://mirage-engine.uk/forums) +-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61) +--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18) +---- Forum: Source Code Development (https://mirage-engine.uk/forums/forumdisplay.php?fid=51) +----- Forum: Mirage Source 4 (Visual Basic 6) (https://mirage-engine.uk/forums/forumdisplay.php?fid=44) +----- Thread: Mirage Source 4 (/showthread.php?tid=1758) |
Re: [Download] Mirage Source 3.70 beta - skillzalot - 24-01-2009 He was only asking Re: [Download] Mirage Source 3.70 beta - Tony - 24-01-2009 Ehh it's a bit common sense who really has enough time to do that and even if they did why would they want to when they could just browse through the source in a swift. Re: [Download] Mirage Source 3.70 beta - Matt - 26-01-2009 If you kill npcs on a map, walk off the map, then come back, they don't show properly. I talked to Dugor about this and he came up with the start of how to fix it, this will make them appear if they move, but they still go poof. HandleSpawnNpc - client side Code: Dim i As Long At the bottom of the sub, before "End Sub" add this: Code: High_Npc_Index = 0 Re: [Download] Mirage Source 3.71 beta - Matt - 27-01-2009 Dugor tested it and it even happened for him. I'd set npcs on two maps, kill them on one, walk to another map, then walk back and they were all messed up. Re: [Download] Mirage Source 3.71 beta - Aydan - 28-01-2009 good news DFA the problem I had is no more ![]() Well done. Keep up the good work. By the way what else are you doing until the final release of MS4? Re: [Download] Mirage Source 3.71 beta - Matt - 28-01-2009 It would be great if these features that you add were also released in tutorial format, for those of us that have already begun to work on a project. Re: [Download] Mirage Source 3.71 beta - Rian - 28-01-2009 The spell animations don't quite work correctly. Seems like it shows the wrong animation, and if you kill the npc in one hit, the animation doesn't play until the npc respawns. Re: [Download] Mirage Source 3.72 beta - DarkX - 30-01-2009 Hey DFA, as far as Rian's comment goes, the spells "DO" blit the correct image, but if the NPC Dies in one hit of the spell, or the spell is the last damage delt, it won't blit until the npc respawns. Re: [Download] Mirage Source 3.72 beta - timster0 - 31-01-2009 The Items are now done like XW right? so the converter for XW should work for the new MS? EDIT:omg, now I would need to convert my entire sprite sheet 1 by 1. Re: [Download] Mirage Source 3.72 beta - genusis - 01-02-2009 Ya had more than one player online and the players other than the first player online spirits don't blt right 0.0 it has to be the bltspirit or player thing or the playerhighindex.. sorry i fixed it its because the classes where blank =.= Re: [Download] Mirage Source 3.73 beta - Robin - 02-02-2009 It's a very nice source indeed. Started building a few more features off it to replace my outdated source. I'll have a few more tutorials out by the end of the week. Re: [Download] Mirage Source 3.73 beta - timster0 - 02-02-2009 I just tried out the new version, it looks really nice. Re: [Download] Mirage Source 3.73 beta - jsventor - 03-02-2009 hey heres a suggestion, MP3 support, that would be nice! Re: [Download] Mirage Source 3.73 beta - Matt - 03-02-2009 I don't think it'd be hard to write a program that would convert the sprite sheet to several files with 1 sprite each. I'm not doing it though, so, it don't matter to me. Re: [Download] Mirage Source 3.73 beta - timster0 - 03-02-2009 Heres a couple suggestions from me: -Stats are in a picbox and not in the chatbox. -Menu Music. Re: [Download] Mirage Source 3.73 beta - Nean - 03-02-2009 timster0 Wrote:Heres a couple suggestions from me: Menu music is amazingly easy. Go to the form which you want it to play on Call PlayMidi("MidiName") And then Call StopMidi("MidiName") Or some BS Re: [Download] Mirage Source 3.73 beta - Matt - 03-02-2009 Or stop being lazy and find the tutorial that was released years ago for it? Re: [Download] Mirage Source 3.73 beta - Robin - 03-02-2009 The new sprite system is easy to work with. I just edited my old sprite converter that takes a sheet with 8 sprites from RM2K, which then converts it to the classic Mirage layout, then converts it to sprites.BMP in one huge sheet. Now it also takes each sprite and saves it into a seperate file. :3 Re: [Download] Mirage Source 3.73 beta - genusis - 03-02-2009 lets see hmmm 1 show the spell animation on the tile the npc is on not on the npc so that way if the npc dies the animation still goes till it stops and doesn't blt on the npc when it revives. 2 Fullscreen choose between using it or not on login? just some things people would like to have that i heard about the spell thing was me its kind of annoying that it blts off the newly re-spawned npc instead of the maptile ^^. Re: [Download] Mirage Source 3.73 beta - Robin - 03-02-2009 I just removed the spell blting system. Didn't work very well. I have it set to the x & y co-ordinates, not the actual player. I store all the data in a new type, and have that type set into a re-dimmed array, so you can have as many animations on the map as possible, and you can set them anywhere, not just on the player ;D For example, with my resource system, if you hit a tree with an axe, it'll show an animation on the tree to show this, and the same happens when hitting a rock with a pickaxe. Re: [Download] Mirage Source 3.73 beta - genusis - 03-02-2009 hm trigger activated animations =] kind of like my roofing tiles i did =]. it is a really good idea and spell animation they do work just he has them set on the player or npc instead of blting on map. Re: [Download] Mirage Source 3.73 beta - Robin - 03-02-2009 Oh, I know they work, but it's annoying seeing an animation disappear when the player warps or dies or something. Re: [Download] Mirage Source 3.73 beta - genusis - 03-02-2009 he should have just did it as tiles. ii don't like how every time it goes threw both npc and player it search's for a spell. and how annoying it is for the way it is being blt. Re: [Download] Mirage Source 3.73 beta - Kraft - 03-02-2009 Robin Wrote:I have it set to the x & y co-ordinates, not the actual player. I store all the data in a new type, and have that type set into a re-dimmed array, so you can have as many animations on the map as possible, and you can set them anywhere, not just on the player ;DYeah, I've done it too. This should be in MS4, works great. Re: [Download] Mirage Source 3.73 beta - Matt - 03-02-2009 genusis Wrote:he should have just did it as tiles. ii don't like how every time it goes threw both npc and player it search's for a spell. and how annoying it is for the way it is being blt. Quit bitching. DFA is doing this for free. |