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

Antisora

Members
  • Posts

    267
  • Joined

  • Last visited

    Never

Posts posted by Antisora

  1. Whenever i try to play "The last stand: Union city", It says i am denying access to my local storage. It says i can fix by opening the settings, but whenever i open up the settings option, i only get 3 options on the window:
    ![](http://www.freemmorpgmaker.com/files/imagehost/pics/74700897cf537dadf2cfa9ea5443d4aa.PNG)
    Does anyone know how to fix this?
    Specs/Stats/General info
    Mozilla firefox 7.0.1
    512 MB Ram
  2. @Soul:

    > IIRC, it should be this:
    >
    > ```
    > ' Player message
    >         If Left$(ChatText, 2) = "! " Then ' Notice: "! " is two characters (exclamation, space)
    >             ChatText = Mid$(ChatText, 2, Len(ChatText) - 2) ' Hence change "Len(ChatText) - 1" to "Len(ChatText - 2)" (quotes for clarity).
    >
    > ```

    Thanks, it works :D
  3. @Ryujin:

    > Show at this Thread: http://www.touchofdeathforums.com/smf/index.php/topic,68998.0.html
    >
    > You can change the /p to a ! command but you must change:
    >
    > This:
    > ' Player message
    >         If Left$(ChatText, 3) = "/p " Then
    >             ChatText = Mid$(ChatText, 4, Len(ChatText) - 3)
    >
    > To this:
    > ' Player message
    >         If Left$(ChatText, 1) = "! " Then
    >             ChatText = Mid$(ChatText, 2, Len(ChatText) - 1)
    >
    > @Topic:
    > I think this Fix for the "-" Command is not right because when you change the MyText to ChatText and wrote with - inGame a Message its cutted 1 letter.
    >
    > Example:
    > You write -hello
    > This comes out:
    > Accountname ello
    >
    > We can fix this?

    The ! whisper fix does not work.
  4. ~~For some reason, it does not work for me :/~~
    >! Private Sub cmdQuestBack_KeyUp(KeyCode As Integer, Shift As Integer)
        Select Case KeyCode
            Case vbKeyPageUp
                QuickHeal
        End Select
    ~~Thats the only _Keyup i found, is there another one?

    ~~I also found this key up
    ~~>! Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
    Dim i As Long
    >!     ' If debug mode, handle error then exit out
        If Options.Debug = 1 Then On Error GoTo errorhandler
    >!     Select Case KeyCode
            Case vbKeyInsert
                If Player(MyIndex).Access > 0 Then
                    picAdmin.Visible = Not picAdmin.Visible
                End If
            'ALATAR 'This key shows the questlog
            Case vbKeyEnd
                UpdateQuestLog
                If picQuestLog.Visible Then
                    ShowQuestLogPage 1
                    picQuestLog.Visible = False
                Else
                    picQuestLog.Visible = True
                End If
            '/ALATAR

            Case vbKeyDelete
                'MsgBox Player(MyIndex).PlayerQuest(1).Status
                PlayerHandleQuest 1, 2
        End Select

        ' hotbar
        For i = 1 To MAX_HOTBAR
            If KeyCode = 111 + i Then
                SendHotbarUse i
            End If
        Next

            ' Spinning
        If KeyCode = 36 Then
        Call Spin
        End If

    >!     ' Error handler
        Exit Sub
    errorhandler:
        HandleError "Form_KeyUp", "frmMain", Err.Number, Err.Description, Err.Source, Err.HelpContext
        Err.Clear
        Exit Sub
    End Sub
    ~~Do i use that one?~~
    EDIT: Wow, am i an idiot XD
    Fixed it myself~~~~~~
  5. I recently added Captain Wabbits Chat drawn to screen to my game.
    So i was wondering how to remove the regular chat box, so there is not two of them.
    Link to tutorial

    >! http://www.touchofdeathforums.com/smf/index.php/topic,70469.0.html
    Image showing what i want gone

    >! ![](http://www.freemmorpgmaker.com/files/imagehost/pics/4452b7032a312dcb2c989c44d2aa93b3.PNG)
  6. @7:

    > Stroke, that's the word…couldn't remember the word. ;p
    >
    > I'm guessing you replaced it with a shadow purely for FPS reasons? If so, it did occur to me, but I personally prefer being able to read the drawn text over slightly higher FPS...buuuut, just my opinion.
    >
    > You can't've followed Lightning's tutorial properly, this is simply a copy+paste...go back to it, carefully read it, and so on.

    Wait, is it a seperate feature to have the text off to the side, instead of in the box?
×
×
  • Create New...