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

Coolguy6318

Members
  • Posts

    134
  • Joined

  • Last visited

Posts posted by Coolguy6318

  1. Hi all this is my 1st attempt at mapping and I just wanted to see what you think of them

    Map #1
    ![](http://www.mediafire.com/imgbnc.php/c072ad8110930fd8b57274807b0debe44g.jpg)

    Map #2
    ![](http://www.mediafire.com/imgbnc.php/27c27bf61922393db5fcea66118756654g.jpg)

    Map #3
    ![](http://www.mediafire.com/imgbnc.php/f44708f1a920e59733d5201859c36f254g.jpg)

    Map #4
    ![](http://www.mediafire.com/imgbnc.php/83082edc0d27cb0fc13cf15ad55dc9814g.jpg)
  2. @ѕнα∂σω:

    > @Coolguy6318:
    >
    > > I did all this but when I push ctrl by npc nothing happens?
    >
    > Make sure the npc number and QuestNum are the same. (I believe that's correct) Anyway, if that doesn't work, maybe check the code again? Did you have Qazek's quest system working before you tried this? Let's see if we can narrow it down. :)

    Ok i tested Qazeks quest system today no errors but when i talk 2 npc nothing happens :icon_crap:
  3. What do you all think of this gui as a welcome screen
    ![](http://www.mediafire.com/imgbnc.php/834e9a7b789af5009c5fd00371f10e264g.jpg)

    Download here: [http://www.mediafire.com/imageview.php?quickkey=a7bocd6u51yyld8&thumb=4](http://www.mediafire.com/imageview.php?quickkey=a7bocd6u51yyld8&thumb=4)
  4. Ok its working now i just had 2 change it to this
    ```
    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

    ' Open the default browser on a given URL
    ' Returns True if successful, False otherwise

    Public Function OpenBrowser(ByVal URL As String) As Boolean
        Dim res As Long

        ' it is mandatory that the URL is prefixed with http:// or https://
        If InStr(1, URL, "http", vbTextCompare) <> 1 Then
            URL = "http://" & URL
        End If

        res = ShellExecute(0&, "open", URL, vbNullString, vbNullString, _
            vbNormalFocus)
        OpenBrowser = (res > 32)
    End Function

    Private Sub lblNews_Click()
    Call OpenBrowser("http://godofdistruction.webs.com/apps/blog")
    End Sub

    ```
    Thanks for help :)
  5. When i put
    ```
    Private Sub lblNews_Click()
    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

    ' Open the default browser on a given URL
    ' Returns True if successful, False otherwise

    Public Function OpenBrowser(ByVal URL As String) As Boolean
        Dim res As Long

        ' it is mandatory that the URL is prefixed with http:// or https://
        If InStr(1, URL, "http", vbTextCompare) <> 1 Then
            URL = "http://" & URL
        End If

        res = ShellExecute(0&, "open", URL, vbNullString, vbNullString, _
            vbNormalFocus)
        OpenBrowser = (res > 32)
    End Function

    ```
    i get compile error  only comments may appear after End sub, End Function or end property
×
×
  • Create New...