Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

goku1993

Members
  • Posts

    196
  • Joined

  • Last visited

Posts posted by goku1993

  1. variable not defined usually means you didn't say what frmMapReport means in this case frmMapReport.frm you shoudn't be getting a problem if you added it properly(did you add it by going to Project then add module in vb6??)
  2. What i understood from what he said is that he can run the game gui in vb6 but not from the exe which of caurse woudn't work because you have to compile the file in vb6 then click on the exe, to compile file go to file then make (i think been some time since i last opened vb6)
  3. non je ne suis plus tres actif sur le forum.Mais bon je peut le reuploader si tu veut mais je ne sais pas si sa va servir
    [http://www.megaupload.com/?d=87FDDJH1](http://www.megaupload.com/?d=87FDDJH1)
  4. Bon voila je l'est traduit vite fais mais je crois qu'il y a des fautes d'orthographe pas tres bon desoler.

    [http://www.megaupload.com/?d=87FDDJH1](http://www.megaupload.com/?d=87FDDJH1)
  5. to switch characters you can just add this to the button
    ```
    Call SwitchCharacter
    ```
    ```
    Sub SwitchCharacter()
    InGame = False
    GettingMap = True
    InEditor = False
    InSpellEditor = False
    InSpawnEditor = False
    Running = False
    frmMirage.Socket.Close
    frmMirage.picExitOptions.Visible = False
    frmMirage.Visible = False
    frmChars.Visible = true
    ```
    that s not exactly but pretty much what i did (there are some lines you don't really need in there)
  6. ok well i m bored so i first though why not do an application to change all the .ini files in the server but then i though that it would be useless, hmm what simple application would help eclipse???
  7. Ok well i tested it but the Y caption in the form doesn't work properly so i think i m gonna check it out i ll tell you if i find the error

    edit: ok found it it s just a stupid error,i think you just didn't realize it while typing:

    ```
    Private Sub scrlX_Change()
        lblX.Caption = scrlX.Value
    End Sub

    Private Sub scrlY_Change()
        lblY.Caption = scrlX.Value
    End Sub
    ```
    should be :
    ```
    Private Sub scrlX_Change()
        lblX.Caption = scrlX.Value
    End Sub

    Private Sub scrlY_Change()
        lblY.Caption = scrlY.Value
    End Sub
    ```
  8. neighbors wireless huh, once i did that my neighbors were so nice they just told me i could when ever i want since they didn't use it much it was for their son or something these were some fun days.
  9. double click label and put```
    OpenWebsite "URL HERE"
    ```then
    ```
    Public Sub OpenWebsite(URL As String)
    Dim ret&
    ret& = ShellExecute(Me.hWnd, "Open", URL, vbNullString, vbNullString, SW_SHOW)
    End Sub
    ```at the end of the frm you added the first code.
    this somwhere in the frm

    ```
    Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
    ```
    i think this is right for default browser not sure though
  10. bon, je ne suis pas francais mais j suis dans une ecole francais et je n'avait rien a faire j'ai donc cree un editeur de quest(quete je crois) tres tres simple [http://www.touchofdeathforums.com/smf/index.php/topic,47864.0.html](http://www.touchofdeathforums.com/smf2/index.php/topic,47864.0.html) je ne sais pas si c'est utile mais si vous voulez je peut le traduire.dite moi si quelqu un en aura besoin parceque c est simple alors bon.
  11. ok yes i know there already is a quest generator on here somwhere but i was just bored so i did a very simple quest generator (very very simple) and just decided to post it here all it does is create a text file with the code in it then just copy the code you have to put in main. in a scripted tile or scripted npc here you go:

    [http://www.filefront.com/13996825/quest.zip](http://www.filefront.com/13996825/quest.zip)

    by the way i took the script from the tut [http://www.touchofdeathforums.com/smf/index.php/topic,29991.0.html](http://www.touchofdeathforums.com/smf/index.php/topic,29991.0.html) all i did in the end was put the script into an application i guess (didn't feel like writing a script)
×
×
  • Create New...