Thread: [PI] Dialogue Chat Maker (DialogueMaster)

Page 1 of 3 123 LastLast
Results 1 to 10 of 28
  1. #1 [PI] Dialogue Chat Maker (DialogueMaster) 
    Registered Member Treq's Avatar
    Join Date
    Aug 2010
    Posts
    463
    Thanks given
    71
    Thanks received
    65
    Rep Power
    22
    Hey guys today I'm going to be releasing a piece of software that I have made for making dialogues in project insanity alot easier! What it does is lets you input the info such as names, what to say and id's. Then when you hit the magic button it takes that information and turns it into copy/paste-able code.

    First I must say that I scanned this on VirusTotal.com and it did come up as a virus in one result... Because of this i'm releasing the source code because this is a one of a kind program and I would not like anyone to not try it because of what a un-true test says.

    Here is the test if you want- [Only registered and activated users can see links. ]

    Here is a video showing the programs features- [Only registered and activated users can see links. ]
    Here is the source code-
    Code:
    Public Class Form1
        Const quote As String = """"
        Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click
    
        End Sub
    
        Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged
            If RadioButton1.Checked Then
    
            End If
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    
        End Sub
    
        Private Sub RadioButton4_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton4.CheckedChanged
            If RadioButton4.Checked Then
                TextBox1.Visible = True
                TextBox2.Visible = False
                TextBox3.Visible = False
                TextBox4.Visible = False
            End If
        End Sub
    
        Private Sub RadioButton3_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton3.CheckedChanged
            If RadioButton3.Checked Then
                TextBox1.Visible = True
                TextBox2.Visible = True
                TextBox3.Visible = False
                TextBox4.Visible = False
            End If
        End Sub
    
        Private Sub RadioButton5_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton5.CheckedChanged
            TextBox1.Visible = True
            TextBox2.Visible = True
            TextBox3.Visible = True
            TextBox4.Visible = False
        End Sub
    
        Private Sub RadioButton6_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton6.CheckedChanged
            TextBox1.Visible = True
            TextBox2.Visible = True
            TextBox3.Visible = True
            TextBox4.Visible = True
        End Sub
        Public Sub getValue()
            If RadioButton4.Checked Then
                Label3.Text = "1"
            End If
            If RadioButton3.Checked Then
                Label3.Text = "2"
            End If
            If RadioButton5.Checked Then
                Label3.Text = "3"
            End If
            If RadioButton6.Checked Then
                Label3.Text = "4"
            End If
    
        End Sub
    
        Private Sub playerChat()
            If RadioButton4.Checked = True Then
                RichTextBox1.Text += Environment.NewLine + "	    case " + TextBox5.Text + ":"
                RichTextBox1.Text += Environment.NewLine + "            sendPlayerChat" + Label3.Text + "(" + quote + TextBox1.Text + quote + ");"
                RichTextBox1.Text += Environment.NewLine + "            c.nextChat = " + TextBox6.Text + ";"
                RichTextBox1.Text += Environment.NewLine + "        break;"
            End If
            If RadioButton3.Checked = True Then
                RichTextBox1.Text += Environment.NewLine + "	    case " + TextBox5.Text + ":"
                RichTextBox1.Text += Environment.NewLine + "            sendPlayerChat" + Label3.Text + "(" + quote + TextBox1.Text + quote + ", " + quote + TextBox2.Text + quote + ");"
                RichTextBox1.Text += Environment.NewLine + "            c.nextChat = " + TextBox6.Text + ";"
                RichTextBox1.Text += Environment.NewLine + "        break;"
            End If
            If RadioButton5.Checked = True Then
                RichTextBox1.Text += Environment.NewLine + "	    case " + TextBox5.Text + ":"
                RichTextBox1.Text += Environment.NewLine + "            sendPlayerChat" + Label3.Text + "(" + quote + TextBox1.Text + quote + ", " + quote + TextBox2.Text + quote + ", " + quote + TextBox3.Text + quote + ");"
                RichTextBox1.Text += Environment.NewLine + "            c.nextChat = " + TextBox6.Text + ";"
                RichTextBox1.Text += Environment.NewLine + "        break;"
            End If
            If RadioButton6.Checked = True Then
                RichTextBox1.Text += Environment.NewLine + "	    case " + TextBox5.Text + ":"
                RichTextBox1.Text += Environment.NewLine + "            sendPlayerChat" + Label3.Text + "(" + quote + TextBox1.Text + quote + ", " + quote + TextBox2.Text + quote + ", " + quote + TextBox3.Text + quote + ", " + quote + TextBox4.Text + quote + ");"
                RichTextBox1.Text += Environment.NewLine + "            c.nextChat = " + TextBox6.Text + ";"
                RichTextBox1.Text += Environment.NewLine + "        break;"
            End If
        End Sub
    
        Private Sub npcChat()
            If RadioButton4.Checked = True Then
                RichTextBox1.Text += Environment.NewLine + "	    case " + TextBox5.Text + ":"
                RichTextBox1.Text += Environment.NewLine + "            sendNpcChat" + Label3.Text + "(" + quote + TextBox1.Text + quote + ", c.talkingNpc, " + quote + TextBox7.Text + quote + ");"
                RichTextBox1.Text += Environment.NewLine + "            c.nextChat = " + TextBox6.Text + ";"
                RichTextBox1.Text += Environment.NewLine + "        break;"
            End If
            If RadioButton3.Checked = True Then
                RichTextBox1.Text += Environment.NewLine + "	    case " + TextBox5.Text + ":"
                RichTextBox1.Text += Environment.NewLine + "            sendNpcChat" + Label3.Text + "(" + quote + TextBox1.Text + quote + ", " + quote + TextBox2.Text + quote + ", c.talkingNpc, " + quote + TextBox7.Text + quote + ");"
                RichTextBox1.Text += Environment.NewLine + "            c.nextChat = " + TextBox6.Text + ";"
                RichTextBox1.Text += Environment.NewLine + "        break;"
            End If
            If RadioButton5.Checked = True Then
                RichTextBox1.Text += Environment.NewLine + "	    case " + TextBox5.Text + ":"
                RichTextBox1.Text += Environment.NewLine + "            sendNpcChat" + Label3.Text + "(" + quote + TextBox1.Text + quote + ", " + quote + TextBox2.Text + quote + ", " + quote + TextBox3.Text + quote + ", c.talkingNpc, " + quote + TextBox7.Text + quote + ");"
                RichTextBox1.Text += Environment.NewLine + "            c.nextChat = " + TextBox6.Text + ";"
                RichTextBox1.Text += Environment.NewLine + "        break;"
            End If
            If RadioButton6.Checked = True Then
                RichTextBox1.Text += Environment.NewLine + "	    case " + TextBox5.Text + ":"
                RichTextBox1.Text += Environment.NewLine + "            sendNpcChat" + Label3.Text + "(" + quote + TextBox1.Text + quote + ", " + quote + TextBox2.Text + quote + ", " + quote + TextBox3.Text + quote + ", " + quote + TextBox4.Text + quote + ", c.talkingNpc, " + quote + TextBox7.Text + quote + ");"
                RichTextBox1.Text += Environment.NewLine + "            c.nextChat = " + TextBox6.Text + ";"
                RichTextBox1.Text += Environment.NewLine + "        break;"
            End If
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Button1.Visible = False
            Button3.Visible = True
            Button4.Visible = True
            RichTextBox1.Visible = True
            getValue()
            'player
            If RadioButton2.Checked Then
                playerChat()
            End If
            'npc
            If RadioButton2.Checked = False Then
                npcChat()
            End If
        End Sub
    
        Private Sub RichTextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RichTextBox1.TextChanged
    
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            If RadioButton3.Checked = False And RadioButton4.Checked = False And RadioButton5.Checked = False And RadioButton6.Checked = False Then
                MsgBox("Please select the number of lines before hitting this button!", vbOKOnly)
                Return
            End If
            Label1.Visible = True
            TextBox5.Visible = True
            GroupBox1.Visible = False
            GroupBox2.Visible = False
            Button2.Visible = False
            Button1.Visible = True
            TextBox6.Visible = True
            Label2.Visible = True
            
            If RadioButton1.Checked Then
                Label7.Visible = True
                TextBox7.Visible = True
            End If
        End Sub
    
        Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click
    
        End Sub
    
        Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton2.CheckedChanged
            If RadioButton2.Checked Then
    
            End If
        End Sub
    
        Private Sub TextBox7_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox7.TextChanged
    
        End Sub
    
        Private Sub Label7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label7.Click
    
        End Sub
    
        Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
            Button3.Visible = False
            GroupBox1.Visible = True
            GroupBox2.Visible = True
            Button2.Visible = True
            TextBox1.Visible = False
            TextBox2.Visible = False
            TextBox3.Visible = False
            TextBox4.Visible = False
            TextBox5.Visible = False
            TextBox6.Visible = False
            TextBox7.Visible = False
            RichTextBox1.Visible = False
            Label1.Visible = False
            Label2.Visible = False
            Label7.Visible = False
            RichTextBox1.Text = ""
            TextBox1.Text = ""
            TextBox2.Text = ""
            TextBox3.Text = ""
            TextBox4.Text = ""
            TextBox5.Text = ""
            TextBox6.Text = ""
            TextBox7.Text = ""
            Label3.Text = ""
            Label4.Text = ""
            Label5.Text = ""
            Label6.Text = ""
            RadioButton1.Checked = False
            RadioButton2.Checked = False
            RadioButton3.Checked = False
            RadioButton4.Checked = False
            RadioButton5.Checked = False
            RadioButton6.Checked = False
            Button4.Visible = False
    
        End Sub
    
        Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
            MsgBox("To copy, Highlight and press 'ctrl + c'", vbOKOnly)
        End Sub
    End Class
    And a picture-



    And finally the download link- [Only registered and activated users can see links. ]

    To Rune-Server Staff- Please do not give me an infraction for this as I have done every thing I possibly could to prove it's not a virus (provided the code and video). It's just a basic application made in Visual Studio. I would not like to get banned over a silly thing like this. I would also be grateful if someone could verify this as legit.
    ~Treq~ (Previously Spetsnaz)
    Reply With Quote  
     

  2. Thankful users:


  3. #2  
    Registered Member
    Join Date
    Oct 2010
    Posts
    38
    Thanks given
    0
    Thanks received
    1
    Rep Power
    1
    its legit and works great
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  4. Thankful user:


  5. #3  
    Registered Member Treq's Avatar
    Join Date
    Aug 2010
    Posts
    463
    Thanks given
    71
    Thanks received
    65
    Rep Power
    22
    Quote Originally Posted by _Acrodox View Post
    its legit and works great
    Thank you
    ~Treq~ (Previously Spetsnaz)
    Reply With Quote  
     

  6. #4  
    I'm Baack...


    Join Date
    Mar 2011
    Posts
    1,663
    Thanks given
    281
    Thanks received
    202
    Rep Power
    324
    Looks good, I'll test it out
    I'm back
    Reply With Quote  
     

  7. #5  
    touched like seafood
    Women's Avatar
    Join Date
    Mar 2010
    Posts
    1,830
    Thanks given
    651
    Thanks received
    1,001
    Discord
    View profile
    Rep Power
    3071
    Oh this is great, it'll save me alot of time.

    Thanks!


    When you ape the cops it ain't anarchy
    Reply With Quote  
     

  8. #6  
    Registered Member Treq's Avatar
    Join Date
    Aug 2010
    Posts
    463
    Thanks given
    71
    Thanks received
    65
    Rep Power
    22
    Thanks for the feedback guys!
    ~Treq~ (Previously Spetsnaz)
    Reply With Quote  
     

  9. #7  
    Banned
    Join Date
    Apr 2011
    Posts
    801
    Thanks given
    66
    Thanks received
    84
    Rep Power
    0
    Holy shit love it!
    Reply With Quote  
     

  10. #8  
    Registered Member Treq's Avatar
    Join Date
    Aug 2010
    Posts
    463
    Thanks given
    71
    Thanks received
    65
    Rep Power
    22
    Quote Originally Posted by Piranhas View Post
    Holy shit love it!
    Yay i'm glad, It's good for people who like to write crazy long ass quests eh?
    ~Treq~ (Previously Spetsnaz)
    Reply With Quote  
     

  11. #9  
    Banned
    Join Date
    Apr 2011
    Posts
    801
    Thanks given
    66
    Thanks received
    84
    Rep Power
    0
    Yes!
    Reply With Quote  
     

  12. #10  
    Registered Member amfibija's Avatar
    Join Date
    May 2009
    Age
    26
    Posts
    302
    Thanks given
    93
    Thanks received
    19
    Rep Power
    22
    Thank you so much! It will save me a lot of time since I like making quests.
    Reply With Quote  
     

Page 1 of 3 123 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Dialogue Maker
    By Chimeric in forum Tools
    Replies: 40
    Last Post: 02-22-2011, 01:18 AM
  2. [PI] Chat Dialogue
    By NewbPK in forum Help
    Replies: 1
    Last Post: 01-31-2011, 02:59 AM
  3. [PI] NPC Chat Dialogue [New Era]
    By watch n lern in forum Help
    Replies: 1
    Last Post: 11-29-2010, 01:14 AM
  4. Simple Dialogue maker V1
    By X Mercy X in forum Snippets
    Replies: 3
    Last Post: 01-06-2010, 07:00 PM
  5. Simple Command Based Clan Maker/Chat?
    By Solid in forum Requests
    Replies: 0
    Last Post: 08-16-2009, 10:14 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •