Results 1 to 6 of 6
  1. #1
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh

    Script Editor[Still Creating]

    Hey i want to make out a new software for modding!



    Like Notepad but this will be just only for the scripts *.gsc!


    Im not sure if this will be going to work or not but im pretty sure that after Max.30min. it will be released!!!!


    I will be use a Rich Text Box and the text will not saved as a normal txt but as a Rich Text box!


    But im trying to make it out!


    Any Idea??!!
    PM ME!

  2. #2
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    Not neccesary. Use notepad ++

  3. #3
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Yea i know but i dont have anything to do at the moment :P and i will create it right now!
    Code:
    Public Class Form1
    
        Private Sub OpenToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenToolStripMenuItem.Click
            Try
                Dim dlg As OpenFileDialog = New OpenFileDialog
                dlg.Title = "Open..."
                dlg.Filter = "Scripts *.gsc | *.gsc"
                If dlg.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
                    RichTextBox1.LoadFile(dlg.FileName)
                End If
            Catch ex As Exception : End Try
        End Sub
    
        Private Sub SaveToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveToolStripMenuItem.Click
            Try
                Dim dlg As SaveFileDialog = New SaveFileDialog
                dlg.Title = "Save As..."
                dlg.Filter = "Scripts *.gsc | *.gsc"
                If dlg.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
                    RichTextBox1.SaveFile(dlg.FileName)
                End If
            Catch ex As Exception : End Try
        End Sub
    
        Private Sub ExitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExitToolStripMenuItem.Click
            End
        End Sub
    End Class

  4. #4
    Crazyelfjj's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Different from the last time.
    Posts
    111
    Reputation
    10
    Thanks
    10
    My Mood
    Relaxed
    Will this have a specific Gsc debugger? Like it will point out an error that maybe won't cause the game to load or something of that sort. .
    [IMG]https://i234.photobucke*****m/albums/ee284/crazyelfjj/34473.png[/IMG][IMG]https://i234.photobucke*****m/albums/ee284/crazyelfjj/35551.gif[/IMG]
    [IMG]https://i234.photobucke*****m/albums/ee284/crazyelfjj/31141.gif[/IMG][IMG]https://i234.photobucke*****m/albums/ee284/crazyelfjj/35887.gif[/IMG]
    [IMG]https://i234.photobucke*****m/albums/ee284/crazyelfjj/19101.gif[/IMG][IMG]https://i234.photobucke*****m/albums/ee284/crazyelfjj/35202.png[/IMG]
    [IMG]https://i234.photobucke*****m/albums/ee284/crazyelfjj/Gscmodding.png[/IMG][IMG]https://i234.photobucke*****m/albums/ee284/crazyelfjj/Nvida.gif[/IMG]

    Afraid to ask a question? Did you did your research? If so, ask away! If not... you should be afraid.

  5. #5
    Abstract's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Look in your refrigerator
    Posts
    3,626
    Reputation
    54
    Thanks
    980
    Quote Originally Posted by AcE.bu50t View Post
    Hey i want to make out a new software for modding!



    Like Notepad but this will be just only for the scripts *.gsc!


    Im not sure if this will be going to work or not but im pretty sure that after Max.30min. it will be released!!!!


    I will be use a Rich Text Box and the text will not saved as a normal txt but as a Rich Text box!


    But im trying to make it out!


    Any Idea??!!
    PM ME!
    Make it save as .gsc

  6. #6
    Archangel's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Between Both Worlds
    Posts
    8,866
    Reputation
    1021
    Thanks
    9,003
    My Mood
    Angelic
    yeah, a 12 year old can do that

    go to the coding section

    /closed

Similar Threads

  1. [Release] Here you go, a weapon script editor
    By rickbovenkamp2 in forum WarRock - International Hacks
    Replies: 104
    Last Post: 01-08-2012, 12:03 AM
  2. [Release] Old Css Bhop Script Works Still
    By moshy12 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 11
    Last Post: 11-28-2011, 09:12 PM
  3. [Solved] [Help] Here you go, a weapon script editor
    By obinobi in forum WarRock Help
    Replies: 8
    Last Post: 08-02-2011, 09:25 AM
  4. How to create your own scripts?
    By Thunder in forum RuneScape Discussions
    Replies: 5
    Last Post: 09-26-2010, 11:22 AM
  5. Creating a Basic Captcha script
    By Ugleh in forum Web Languages
    Replies: 5
    Last Post: 02-22-2010, 01:28 PM