This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2013-03-24 22:44:40

Moxux
New Scratcher
Registered: 2013-03-24
Posts: 8

PokÉmon Camouflage Edition! (open Source!!!)

Code:

Public Class garyfight

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Flee.Click
        '''''''''''''FLEE BUTTON''''''''''''''''
        If GARYHP.Text = "HP: 100" Then
            MsgBox("Gary Says: Where you going *!? Can't from from Me!")
        ElseIf GARYHP.Text = "HP: 0" Then
            MsgBox("Got Away Safely!")
        End If
        '''''''''''''''''''''''''''''''''''''''
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Attack.Click
        '''''''''VARIBALES''''''''''''
        Dim NAME As String
        Dim PLAYERHEALTH As String
        Dim GARYHEALTH As String
        Dim GARYHIT As String
        Dim PLAYHIT As String
        PLAYHIT = "GARY HIT"
        GARYHIT = "HIT GARY!"
        GARYHEALTH = GARYHP.Text
        PLAYERHEALTH = PLAYERHP.Text
        NAME = NAMETEXT.Text
        '''''''''''''''''''''''''''''''

        '''''''''BATTLE CODE''''''''''''''
        If NAME = "ENTER YOUR NAME" Then
            INFO.Text = "Enter your name!"
        Else
            INFO.Text = NAME + " " + GARYHIT
            GARYHP.text = "HP: 75"
            PLAYERHP.Text = "HP: 75"
            MsgBox("GARY HIT" + " " + NAME + "!")

        End If
        If GARYHP.Text = "HP: 75" Then
            INFO.Text = (NAME + " " + GARYHIT)
            GARYHP.Text = "HP: 50"
            MsgBox("GARY HIT" + " " + NAME + " " + "AND IT WAS CRITICAL!")
            PLAYERHP.Text = "HP: 25"
        End If

        If GARYHP.Text = "HP: 50" Then
            INFO.Text = (NAME + " " + GARYHIT + " " + "AND IT WAS CRITICAL!")
            GARYHP.Text = "HP: 20"
            MsgBox("GARY HIT" + " " + NAME)
            PLAYERHP.Text = "HP: 5"
        End If

        If GARYHP.Text = "HP: 20" Then
            INFO.Text = (NAME + " " + GARYHIT + " " + "AND IT WAS CRITICAL!")
            GARYHP.Text = "HP: 0"
        End If
        ''''''''''''''''''''''''''''''''''

    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PokeBall.Click
        '''''''''POKEBALL''''''''''
        If GARYHP.Text = "HP: 100" Then
            MsgBox("GARY GOT AWAY!")
        ElseIf GARYHP.Text = "HP: 0" Then
            MsgBox("You have caught GARY!")
        End If
        ''''''''''''''''''''''''''
    End Sub
End Class

This is the source code for Pokémon Camouflage Edition by Moxux!

Offline

 

#2 2013-03-25 01:17:24

Bklecka
Scratcher
Registered: 2011-08-27
Posts: 1000+

Re: PokÉmon Camouflage Edition! (open Source!!!)

A: What is this.
B: What language is this.
C: More detail please.


http://i48.tinypic.com/106ijc9.jpg

Offline

 

#3 2013-03-25 19:20:24

kayybee
Scratcher
Registered: 2009-12-07
Posts: 1000+

Re: PokÉmon Camouflage Edition! (open Source!!!)

Bklecka wrote:

A: What is this.
B: What language is this.
C: More detail please.

A: his PokÉmon game
B: VB.net?

Offline

 

#4 2013-03-27 19:04:04

blazerv82
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: PokÉmon Camouflage Edition! (open Source!!!)

looks like basic to me
ive been wrong before though


Pretty Hate Machine, Broken, Closer To God, The Downward Spiral, Further Down The Spiral, The Perfect Drug, The Fragile, And All That Could Have Been, With Teeth, Year Zero, Y34RZ3R0R3M1X3D, Ghosts I-IV, The Slip, Pretty Hate Machine 2010

Offline

 

Board footer