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

Race


Jumbofile
 Share

Recommended Posts

First, look at how classes are done. Try to replicate that except change class to race.

Then you could do something like:

```

Select Case Player(index).Race

Case 1 ' player is race 1'

Select Case Player(index).Class

Case 1 ' player is race 1 & class 1 '

Case 2 ' player is race 1 & class 2 '

End Select

Case 2 ' player is race 2'

Select Case Player(index).Class

Case 1 ' player is race 2 & class 1 '

Case 2 ' player is race 2 & class 2 '

End Select

Case 3 ' player is race 3'

Select Case Player(index).Class

Case 1 ' player is race 3 & class 1 '

Case 2 ' player is race 3 & class 2 '

End Select

End Select

```
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...