MMud version 1.11o

PeterParker
Posts: 0
Joined: Sat Aug 30, 2003 5:00 am

MMud version 1.11o

Post by PeterParker »

Hey Syntax...any idea how soon Nightmare will work with the new MMUD?



Pete
Panterra X
Posts: 0
Joined: Thu May 30, 2002 5:00 am

Re: MMud version 1.11o

Post by Panterra X »

lol it just came out... give the guy some time...
Platinum
Posts: 0
Joined: Wed Oct 24, 2001 5:00 am

Re: MMud version 1.11o

Post by Platinum »

Eh..I'm not upgrading to o..I'll run 3 cleanups a day instead..



o, overall, nerfed a shitload of stuff..so til P comes out, I'm stayin with n
War Hawk
Posts: 0
Joined: Thu Mar 07, 2002 6:00 am

Re: MMud version 1.11o

Post by War Hawk »

an update will be out when syntax puts it out :P~
syntax53
Posts: 0
Joined: Wed Apr 03, 2002 6:00 am

Re: MMud version 1.11o

Post by syntax53 »

i started working on it a 'lil last night. they changed the size of the room database by making the active monster slots 4 bytes each instead of 2 (thanks to locke for giving me that info without needing to search myself :)). they also added a 2 byte field somewhere as well which we still have to find.



the dilemma i have with it is with all the past versions (from v1.11i through v1.11n) there were no database changes like this. with v1.11j you had the exp multiplier, but that just used an unused field so the structure stayed the same. if i released a nightmare just for v1.11o and greater it would be done now, but i'd like to try and make it work with both.



anyone know how to declare a variable set as a custom structure type in a module based on condition or redeclare/redifine after it has been declared in visual basic 6.0? :)



-syn
War Hawk
Posts: 0
Joined: Thu Mar 07, 2002 6:00 am

Re: MMud version 1.11o

Post by War Hawk »

in C++ you use virtual functions and variables... I dunno if that is possible in VB
axb9041

Re: MMud version 1.11o

Post by axb9041 »

redim preserve varName as CustomType ... is this what you are looking for? You may or may not need preserve. I can try to help.



Adam
syntax53
Posts: 0
Joined: Wed Apr 03, 2002 6:00 am

Re: MMud version 1.11o

Post by syntax53 »

redim preserve varName as CustomType ... is this what you are looking for? You may or may not need preserve. I can try to help.



Adam



you can only use the redim statement for dynamic arrays ..



IE:

Dim VarA() as Integer



ReDim VarA(0 to 5) - make VarA an 6 element array

ReDim VarA(0 to 4) - make VarA a 5 element array, erasing the current values

ReDim Preserve VarA(0 to 10) - resize VarA to an 11 element array, keeping the array values
axb9041

Re: MMud version 1.11o

Post by axb9041 »

how about;



Set varName = New CustomType



Adam
syntax53
Posts: 0
Joined: Wed Apr 03, 2002 6:00 am

Re: MMud version 1.11o

Post by syntax53 »

how about;



Set varName = New CustomType



Adam



this isn't a vb101 course ... you can only use the set command for objects, and a custom structure (aka a User-Defined Type [UDT]) is not an object.
Post Reply

Return to “Nightmare Redux”