Sorry I ask too many simple questions :D
1.
Public Class Weapon
Dim name As String
Dim type As String
Dim damage As Integer
Dim speed As Double
Dim durability As Integer
Dim value As Integer
Dim RustySword As Weapon
'What kind of declaration must I make? Its an error and says "Declaration expected" right before the rusty sword.
RustySword.name = "Rusty Sword"
End Class
2. How do I make an editable database where I can just set properties for a new weapon, instead of setting them in the code? Kinda like a form where I can do File -> New Weapon -> Whats the name -> What type? etc etc
EDIT: found a tutorial for this... plan on using DataGridView and making a New(....) function.
Sorry I'm such a newbie at programming. I'm still in high school and making such a "complex" game (a text based rpg... what more can I say) already to start off. Its been a great learning experience, and I'm going to take AP CompScience next year, which is gonna be easy considering all the things I've learned
Would appreciate it :D