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

Clueless

Members
  • Posts

    48
  • Joined

  • Last visited

    Never

Posts posted by Clueless

  1. I got the picture box size to change

    ```
    Private Sub MainPic_Change()
    If Form3.Height > MainPic.Height Then
    MainPic.Height = Form3.Height
    End If
    If Form3.Width > MainPic.Width Then
    Form3.Width = MainPic.Width
    End If
    End Sub

    ```
    but now this doesn't have it's effect after the picturebox has changed it's size (it's supposed to scale picture to fit picture box but only scales to fit old picture box size).

    ```
    Private Sub MainPic_Paint()
    Dim Pic As Picture
    MainPic.AutoRedraw = True 'Here or in Properties Window
    Set Pic = LoadPicture(App.Path & "\Src\My Pictures\9.bmp")
    MainPic.PaintPicture Pic, 0, 0, MainPic.ScaleWidth, MainPic.ScaleHeight
    Set MainPic.Picture = MainPic.Image

    End Sub

    ```
    PS how do I change where this thread is to questions and answers?
  2. Here's a tut to change spawn point from class.ini

    [http://www.touchofdeathforums.com/community/index.php?/topic/123200-set-spawn-from-classini/](http://www.touchofdeathforums.com/community/index.php?/topic/123200-set-spawn-from-classini/)
  3. > **if the player select the button register the user**
    >
    > **can not register an account until they select the server once you already selected it over write the file named config.ini and the player will register an account**

    I think he means that all info is stored on a specific server depending on which one you choose so you can't change servers. No metaserver required… except for the admin edits. Can anyone confirm?
  4. I'm not sure if I understand fully. You wish to make it so that when a player starts the client he chooses a server and that changes the port in the Config file. This will require some scripting but not much I think though I'm not sure if changing info affects the client once started. (like when you edit your graphics and nothing happens till you restart your client.)
  5. I get the same error as him

    >! @Tahnner:
    >! > Every time i try to compile server.exe it says something is wrong with anim
    >
    > ![](http://www.freemmorpgmaker.com/files/imagehost/pics/eae651de9d4f8a2398a4fc8a8e16b05d.bmp)
×
×
  • Create New...