[VB.Net]Skill System
Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
5 posts
Page 1 of 1
ChaosOverLord's Tutorials Present....
Skill System In VB.Net
Have you ever wanted to create a game with the Runescape skills?
Well today is your day because here is the tutorial you will love!
First add 1 button and 2 labels to our form...
Name label 1 Level
Name label 2 EXP
Name button 1 Give Me EXP!
Now lets get coding!
Go and declare 2 new more variables using these codes
Dim exp As Integer
Dim level As Integer
Now for form load put
exp = 0
level = 1
label1.text = "Level: " & level
label2.text = "EXP: " & exp
Button 1 use this code
exp += 1
Label2.Text = "EXP: " & exp
If exp = 8 Then
level = 2
Label3.Text = "Level: " & level
Else
If exp = 16 Then
level = 3
Label3.Text = "Level: " & level
End If
End If
This will let you go to level 3 once you have 16 EXP
Skill System In VB.Net
Have you ever wanted to create a game with the Runescape skills?
Well today is your day because here is the tutorial you will love!
First add 1 button and 2 labels to our form...
Name label 1 Level
Name label 2 EXP
Name button 1 Give Me EXP!
Now lets get coding!
Go and declare 2 new more variables using these codes
Dim exp As Integer
Dim level As Integer
Now for form load put
exp = 0
level = 1
label1.text = "Level: " & level
label2.text = "EXP: " & exp
Button 1 use this code
exp += 1
Label2.Text = "EXP: " & exp
If exp = 8 Then
level = 2
Label3.Text = "Level: " & level
Else
If exp = 16 Then
level = 3
Label3.Text = "Level: " & level
End If
End If
This will let you go to level 3 once you have 16 EXP
You do not have the required permissions to view the files attached to this post.
I have seen all of your tuts you have posted and I want to tell you something. Please use the code tags so we can see the codes clearly.
Your Tutorials are nice, but as Usman55 said please use the Code Tags
Code: Select all
[code][/code
Nailing my feet to the floor is easier than using my own muscles to balance, but you don't see me doing that 

zachman61 wrote:Your Tutorials are nice, but as Usman55 said please use the Code Tagsits
Code: Select all
[/code][code]
you forgot the end bracket
Instead of LOL use this -
LSIBMHBIWFETALOL
Which means -
Laughing silently in between my head because it wasn't funny enough to actually laugh out loud!
LSIBMHBIWFETALOL
Which means -
Laughing silently in between my head because it wasn't funny enough to actually laugh out loud!
CoderBoy1201 wrote:Well that was a fail..zachman61 wrote:Your Tutorials are nice, but as Usman55 said please use the Code TagsitsCode: Select all[/code][code]
you forgot the end bracket
when i first posted it showed both lol
Nailing my feet to the floor is easier than using my own muscles to balance, but you don't see me doing that 

5 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023