Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Eclipse: Skywyre Edition v10


SkywardRiver
 Share

Recommended Posts

  • Replies 711
  • Created
  • Last Reply

Top Posters In This Topic

Is there anybody who can see whats wrong with this code of my classes.ini?

My two Problems are:

1\. In the chareditor, when I make a new char after the registration in the game, they don't show me the 4\. class to choose. I just can see 3 classes.
2\. When I klick the Itemeditor as the Admin in the Game, there comes an error ("Run-time error '9': Subscript out of range").

Thank You very very much for your help! :-)

Here is my code:
```
[INIT]

MaxClasses=4

[CLASS1]
Name=MC
DoNotAdvance=1
MaleSprite=1
FemaleSprite=2

Strength=1
Endurance=1
Intelligence=1
Agility=1
Willpower=1

StartItemCount=2
StartItem1=1
StartValue1=1
StartItem2=2
StartValue2=1

StartSpellCount=0

[CLASS2]
Name=Breaker
DoNotAdvance=1
MaleSprite=3
FemaleSprite=4

Strength=1
Endurance=1
Intelligence=1
Agility=1
Willpower=1

StartItemCount=2
StartItem1=1
StartValue1=1
StartItem2=2
StartValue2=1

StartSpellCount=0

[CLASS3]
Name=Writer
DoNotAdvance=1
MaleSprite=5
FemaleSprite=6

Strength=1
Endurance=1
Intelligence=1
Agility=1
Willpower=1

StartItemCount=2
StartItem1=1
StartValue1=1
StartItem2=2
StartValue2=1

StartSpellCount=0

[CLASS4]
Name=DJ
DoNotAdvance=1
MaleSprite=7
FemaleSprite=8

Strength=1
Endurance=1
Intelligence=1
Agility=1
Willpower=1

StartItemCount=2
StartItem1=1
StartValue1=1
StartItem2=2
StartValue2=1

StartSpellCount=0
```
Link to comment
Share on other sites

i cant seem to make an animation file. i started with a 50x50 pixel square, expanded it to 250x100, and made a test animation in it. then when i go in game, it will let me scroll to animation # 6, but it will not display any animation no matter what. any idea what could be happening here?

edit: forgot to add that it is a png file, before anyone asks lol.

edit x2: turns out that a single animation frame is 192x192
Link to comment
Share on other sites

@'Sy-Man':

> Is there anybody who can see whats wrong with this code of my classes.ini?
>
> My two Problems are:
>
> 1\. In the chareditor, when I make a new char after the registration in the game, they don't show me the 4\. class to choose. I just can see 3 classes.
> 2\. When I klick the Itemeditor as the Admin in the Game, there comes an error ("Run-time error '9': Subscript out of range").
>
> Thank You very very much for your help! :-)
>
> Here is my code:
> ```
> [INIT]
>
> MaxClasses=4
>
> [CLASS1]
> Name=MC
> DoNotAdvance=1
> MaleSprite=1
> FemaleSprite=2
>
> Strength=1
> Endurance=1
> Intelligence=1
> Agility=1
> Willpower=1
>
> StartItemCount=2
> StartItem1=1
> StartValue1=1
> StartItem2=2
> StartValue2=1
>
> StartSpellCount=0
>
> [CLASS2]
> Name=Breaker
> DoNotAdvance=1
> MaleSprite=3
> FemaleSprite=4
>
> Strength=1
> Endurance=1
> Intelligence=1
> Agility=1
> Willpower=1
>
> StartItemCount=2
> StartItem1=1
> StartValue1=1
> StartItem2=2
> StartValue2=1
>
> StartSpellCount=0
>
> [CLASS3]
> Name=Writer
> DoNotAdvance=1
> MaleSprite=5
> FemaleSprite=6
>
> Strength=1
> Endurance=1
> Intelligence=1
> Agility=1
> Willpower=1
>
> StartItemCount=2
> StartItem1=1
> StartValue1=1
> StartItem2=2
> StartValue2=1
>
> StartSpellCount=0
>
> [CLASS4]
> Name=DJ
> DoNotAdvance=1
> MaleSprite=7
> FemaleSprite=8
>
> Strength=1
> Endurance=1
> Intelligence=1
> Agility=1
> Willpower=1
>
> StartItemCount=2
> StartItem1=1
> StartValue1=1
> StartItem2=2
> StartValue2=1
>
> StartSpellCount=0
> ```

Open Client Side and Find:

For i = 1 To 3
frmMenu.cmbClass.AddItem Trim$(Class(i).name)
Next

change the number 3 by the number of available classes
Link to comment
Share on other sites

@'skyzero':

> @'Sy-Man':
>
> > Is there anybody who can see whats wrong with this code of my classes.ini?
> >
> > My two Problems are:
> >
> > 1\. In the chareditor, when I make a new char after the registration in the game, they don't show me the 4\. class to choose. I just can see 3 classes.
> > 2\. When I klick the Itemeditor as the Admin in the Game, there comes an error ("Run-time error '9': Subscript out of range").
> >
> > Thank You very very much for your help! :-)
> >
> > Here is my code:
> > ```
> > [INIT]
> >
> > MaxClasses=4
> >
> > [CLASS1]
> > Name=MC
> > DoNotAdvance=1
> > MaleSprite=1
> > FemaleSprite=2
> >
> > Strength=1
> > Endurance=1
> > Intelligence=1
> > Agility=1
> > Willpower=1
> >
> > StartItemCount=2
> > StartItem1=1
> > StartValue1=1
> > StartItem2=2
> > StartValue2=1
> >
> > StartSpellCount=0
> >
> > [CLASS2]
> > Name=Breaker
> > DoNotAdvance=1
> > MaleSprite=3
> > FemaleSprite=4
> >
> > Strength=1
> > Endurance=1
> > Intelligence=1
> > Agility=1
> > Willpower=1
> >
> > StartItemCount=2
> > StartItem1=1
> > StartValue1=1
> > StartItem2=2
> > StartValue2=1
> >
> > StartSpellCount=0
> >
> > [CLASS3]
> > Name=Writer
> > DoNotAdvance=1
> > MaleSprite=5
> > FemaleSprite=6
> >
> > Strength=1
> > Endurance=1
> > Intelligence=1
> > Agility=1
> > Willpower=1
> >
> > StartItemCount=2
> > StartItem1=1
> > StartValue1=1
> > StartItem2=2
> > StartValue2=1
> >
> > StartSpellCount=0
> >
> > [CLASS4]
> > Name=DJ
> > DoNotAdvance=1
> > MaleSprite=7
> > FemaleSprite=8
> >
> > Strength=1
> > Endurance=1
> > Intelligence=1
> > Agility=1
> > Willpower=1
> >
> > StartItemCount=2
> > StartItem1=1
> > StartValue1=1
> > StartItem2=2
> > StartValue2=1
> >
> > StartSpellCount=0
> > ```
>
> Open Client Side and Find:
>
> For i = 1 To 3
> frmMenu.cmbClass.AddItem Trim$(Class(i).name)
> Next
>
> change the number 3 by the number of available classes

What is the file called? I tried searching "For i = 1 To 3" yet I cannot find it in any files.
Link to comment
Share on other sites

@'lol123xb':

> @'skyzero':
>
> > @'Sy-Man':
> >
> > > Is there anybody who can see whats wrong with this code of my classes.ini?
> > >
> > > My two Problems are:
> > >
> > > 1\. In the chareditor, when I make a new char after the registration in the game, they don't show me the 4\. class to choose. I just can see 3 classes.
> > > 2\. When I klick the Itemeditor as the Admin in the Game, there comes an error ("Run-time error '9': Subscript out of range").
> > >
> > > Thank You very very much for your help! :-)
> > >
> > > Here is my code:
> > > ```
> > > [INIT]
> > >
> > > MaxClasses=4
> > >
> > > [CLASS1]
> > > Name=MC
> > > DoNotAdvance=1
> > > MaleSprite=1
> > > FemaleSprite=2
> > >
> > > Strength=1
> > > Endurance=1
> > > Intelligence=1
> > > Agility=1
> > > Willpower=1
> > >
> > > StartItemCount=2
> > > StartItem1=1
> > > StartValue1=1
> > > StartItem2=2
> > > StartValue2=1
> > >
> > > StartSpellCount=0
> > >
> > > [CLASS2]
> > > Name=Breaker
> > > DoNotAdvance=1
> > > MaleSprite=3
> > > FemaleSprite=4
> > >
> > > Strength=1
> > > Endurance=1
> > > Intelligence=1
> > > Agility=1
> > > Willpower=1
> > >
> > > StartItemCount=2
> > > StartItem1=1
> > > StartValue1=1
> > > StartItem2=2
> > > StartValue2=1
> > >
> > > StartSpellCount=0
> > >
> > > [CLASS3]
> > > Name=Writer
> > > DoNotAdvance=1
> > > MaleSprite=5
> > > FemaleSprite=6
> > >
> > > Strength=1
> > > Endurance=1
> > > Intelligence=1
> > > Agility=1
> > > Willpower=1
> > >
> > > StartItemCount=2
> > > StartItem1=1
> > > StartValue1=1
> > > StartItem2=2
> > > StartValue2=1
> > >
> > > StartSpellCount=0
> > >
> > > [CLASS4]
> > > Name=DJ
> > > DoNotAdvance=1
> > > MaleSprite=7
> > > FemaleSprite=8
> > >
> > > Strength=1
> > > Endurance=1
> > > Intelligence=1
> > > Agility=1
> > > Willpower=1
> > >
> > > StartItemCount=2
> > > StartItem1=1
> > > StartValue1=1
> > > StartItem2=2
> > > StartValue2=1
> > >
> > > StartSpellCount=0
> > > ```
> >
> > Open Client Side and Find:
> >
> > For i = 1 To 3
> > frmMenu.cmbClass.AddItem Trim$(Class(i).name)
> > Next
> >
> > change the number 3 by the number of available classes
>
> What is the file called? I tried searching "For i = 1 To 3" yet I cannot find it in any files.

modHandleData if i remember correctly, but if you don't have vb6 then there's no point in editing your code, i should also mention you should do
```
For i = 1 To UBound(Class)

```instead of a direct number
Link to comment
Share on other sites

@'Growlith1223':

> @'lol123xb':
>
> > @'skyzero':
> >
> > > @'Sy-Man':
> > >
> > > > Is there anybody who can see whats wrong with this code of my classes.ini?
> > > >
> > > > My two Problems are:
> > > >
> > > > 1\. In the chareditor, when I make a new char after the registration in the game, they don't show me the 4\. class to choose. I just can see 3 classes.
> > > > 2\. When I klick the Itemeditor as the Admin in the Game, there comes an error ("Run-time error '9': Subscript out of range").
> > > >
> > > > Thank You very very much for your help! :-)
> > > >
> > > > Here is my code:
> > > > ```
> > > > [INIT]
> > > >
> > > > MaxClasses=4
> > > >
> > > > [CLASS1]
> > > > Name=MC
> > > > DoNotAdvance=1
> > > > MaleSprite=1
> > > > FemaleSprite=2
> > > >
> > > > Strength=1
> > > > Endurance=1
> > > > Intelligence=1
> > > > Agility=1
> > > > Willpower=1
> > > >
> > > > StartItemCount=2
> > > > StartItem1=1
> > > > StartValue1=1
> > > > StartItem2=2
> > > > StartValue2=1
> > > >
> > > > StartSpellCount=0
> > > >
> > > > [CLASS2]
> > > > Name=Breaker
> > > > DoNotAdvance=1
> > > > MaleSprite=3
> > > > FemaleSprite=4
> > > >
> > > > Strength=1
> > > > Endurance=1
> > > > Intelligence=1
> > > > Agility=1
> > > > Willpower=1
> > > >
> > > > StartItemCount=2
> > > > StartItem1=1
> > > > StartValue1=1
> > > > StartItem2=2
> > > > StartValue2=1
> > > >
> > > > StartSpellCount=0
> > > >
> > > > [CLASS3]
> > > > Name=Writer
> > > > DoNotAdvance=1
> > > > MaleSprite=5
> > > > FemaleSprite=6
> > > >
> > > > Strength=1
> > > > Endurance=1
> > > > Intelligence=1
> > > > Agility=1
> > > > Willpower=1
> > > >
> > > > StartItemCount=2
> > > > StartItem1=1
> > > > StartValue1=1
> > > > StartItem2=2
> > > > StartValue2=1
> > > >
> > > > StartSpellCount=0
> > > >
> > > > [CLASS4]
> > > > Name=DJ
> > > > DoNotAdvance=1
> > > > MaleSprite=7
> > > > FemaleSprite=8
> > > >
> > > > Strength=1
> > > > Endurance=1
> > > > Intelligence=1
> > > > Agility=1
> > > > Willpower=1
> > > >
> > > > StartItemCount=2
> > > > StartItem1=1
> > > > StartValue1=1
> > > > StartItem2=2
> > > > StartValue2=1
> > > >
> > > > StartSpellCount=0
> > > > ```
> > >
> > > Open Client Side and Find:
> > >
> > > For i = 1 To 3
> > > frmMenu.cmbClass.AddItem Trim$(Class(i).name)
> > > Next
> > >
> > > change the number 3 by the number of available classes
> >
> > What is the file called? I tried searching "For i = 1 To 3" yet I cannot find it in any files.
>
> modHandleData if i remember correctly, but if you don't have vb6 then there's no point in editing your code, i should also mention you should do
> ```
> For i = 1 To UBound(Class)
>
> ```instead of a direct number

First of all Thank you very much for your help!
But I have no vb6 :-(
I ask myself why there should be a 3\. There were 12 classes in the original Version…?! Shouldn't there be a 12?
Link to comment
Share on other sites

@'Growlith1223':

> @'lol123xb':
>
> > @'skyzero':
> >
> > > @'Sy-Man':
> > >
> > > > Is there anybody who can see whats wrong with this code of my classes.ini?
> > > >
> > > > My two Problems are:
> > > >
> > > > 1\. In the chareditor, when I make a new char after the registration in the game, they don't show me the 4\. class to choose. I just can see 3 classes.
> > > > 2\. When I klick the Itemeditor as the Admin in the Game, there comes an error ("Run-time error '9': Subscript out of range").
> > > >
> > > > Thank You very very much for your help! :-)
> > > >
> > > > Here is my code:
> > > > ```
> > > > [INIT]
> > > >
> > > > MaxClasses=4
> > > >
> > > > [CLASS1]
> > > > Name=MC
> > > > DoNotAdvance=1
> > > > MaleSprite=1
> > > > FemaleSprite=2
> > > >
> > > > Strength=1
> > > > Endurance=1
> > > > Intelligence=1
> > > > Agility=1
> > > > Willpower=1
> > > >
> > > > StartItemCount=2
> > > > StartItem1=1
> > > > StartValue1=1
> > > > StartItem2=2
> > > > StartValue2=1
> > > >
> > > > StartSpellCount=0
> > > >
> > > > [CLASS2]
> > > > Name=Breaker
> > > > DoNotAdvance=1
> > > > MaleSprite=3
> > > > FemaleSprite=4
> > > >
> > > > Strength=1
> > > > Endurance=1
> > > > Intelligence=1
> > > > Agility=1
> > > > Willpower=1
> > > >
> > > > StartItemCount=2
> > > > StartItem1=1
> > > > StartValue1=1
> > > > StartItem2=2
> > > > StartValue2=1
> > > >
> > > > StartSpellCount=0
> > > >
> > > > [CLASS3]
> > > > Name=Writer
> > > > DoNotAdvance=1
> > > > MaleSprite=5
> > > > FemaleSprite=6
> > > >
> > > > Strength=1
> > > > Endurance=1
> > > > Intelligence=1
> > > > Agility=1
> > > > Willpower=1
> > > >
> > > > StartItemCount=2
> > > > StartItem1=1
> > > > StartValue1=1
> > > > StartItem2=2
> > > > StartValue2=1
> > > >
> > > > StartSpellCount=0
> > > >
> > > > [CLASS4]
> > > > Name=DJ
> > > > DoNotAdvance=1
> > > > MaleSprite=7
> > > > FemaleSprite=8
> > > >
> > > > Strength=1
> > > > Endurance=1
> > > > Intelligence=1
> > > > Agility=1
> > > > Willpower=1
> > > >
> > > > StartItemCount=2
> > > > StartItem1=1
> > > > StartValue1=1
> > > > StartItem2=2
> > > > StartValue2=1
> > > >
> > > > StartSpellCount=0
> > > > ```
> > >
> > > Open Client Side and Find:
> > >
> > > For i = 1 To 3
> > > frmMenu.cmbClass.AddItem Trim$(Class(i).name)
> > > Next
> > >
> > > change the number 3 by the number of available classes
> >
> > What is the file called? I tried searching "For i = 1 To 3" yet I cannot find it in any files.
>
> modHandleData if i remember correctly, but if you don't have vb6 then there's no point in editing your code, i should also mention you should do
> ```
> For i = 1 To UBound(Class)
>
> ```instead of a direct number

Thanks man! Now I can edit the starter classes XD
Link to comment
Share on other sites

@'lurv':

> Automation Error
> Specified module can not be found (clean v8 client)
>
> ![](http://puu.sh/mfr37/fee7b4b040.png)
>
> Anybody got a fix for this?

Your computer doesn't have dx8vb.dll registered or it's not properly registered..
reinstall the runtimes or just get a dx8vb.dll and register it
Link to comment
Share on other sites

I installed the library files(thought i already had them lol), and I don't get the DX8 error anymore, i get a different error.

This pops up when i try to run the v8 client
![](http://puu.sh/mhqSf/95db9628f1.png)

![](http://puu.sh/mhqVy/1beb44d30d.png)

![](http://puu.sh/mhr0x/10212d0a7c.png)

Do I still need to register something?
I also tried registering dx8vb.dll manually, but the problem still persists, so that's not the issue anymore.

* * *

I had to run the runtimes installer as administrator, now the client works
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share


×
×
  • Create New...