06-08-2008, 12:39 AM
Ok I have installed the male female system; and the 32x64 sprite system; but now the show sprite on char create system will not work with the 32x64 system; any suggestions?
Issues; male female;32x64
|
06-08-2008, 12:39 AM
Ok I have installed the male female system; and the 32x64 sprite system; but now the show sprite on char create system will not work with the 32x64 system; any suggestions?
06-08-2008, 12:49 AM
Yeah I got mine to work.
Make a timer with an interval of 50. Double click it and add this: Code: SelectNewCharBlt Then add this sub wherever: Code: Public Sub SelectNewCharBlt() Also make sure you make 2 picture boxes called picpic with indexes 1-2 with sizes of 32x32 and 1 is above 2 (obviously). Also make sure you put InitDirectX in Sub Main().
06-08-2008, 01:04 AM
Also you need to set up the arrays.
Top of modHandleData add: Code: Public tmpNewChar() As Long Under: Code: ReDim Class(0 To Max_Classes) As ClassRec Add: Code: ReDim tmpNewChar(1 To Max_Classes + 1) As Long I'm not completely sure how you set up your packets...but I had my male sprite as 8 and my female sprite as 9...so above (in the same packet): Code: n = n + 10 Add: Code: tmpNewChar(I + 1) = Val(Parse$(n + 8))
06-08-2008, 01:35 AM
Ok, I had it working on my old version without all the special stuff; but I'll try that. Thanks.
|
« Next Oldest | Next Newest »
|