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

Golf

Members
  • Posts

    148
  • Joined

  • Last visited

    Never

Posts posted by Golf

  1. Hi,

    this is tutorial how to change your sprite by using item

    BOTH

    In both(Server and client) in modTypes in ItemRec add :

    ```

    Sprite as Long
    ```
    CLIENT SIDE

    In item editor form add label and name it lblSprite and scrollbar scrlSprite

    in scrlSprite code add :

    ```

    lblSprite.Caption = "Sprite: " & scrlSprite.Value
        Item(EditorIndex).Sprite = scrlSprite.Value

    ```
    Go to modGameEditors, find sub:
    ItemEditorInit

    and add:

    ```

    frmeditor_item.scrlSprite.Value = Item(EditorIndex).Sprite
    ```

    SERVER SIDE:

    Go to modPlayer and in sub UseItem  at the end of every case  add :

    ```

    'Check Sprite
                    If Item(itemnum).Sprite = 0 Then
                    'If there is no sprite it wont change it 
                    Else
                    SetPlayerSprite Index, Item(itemnum).Sprite
                    Call SendPlayerData(Index)
                    End If
    ```

    DONE!
  2. So you need to login into your router and find port forwarding.On my router you can add games and applications (I'm using tehnicolor).So add new app or what your router needs.Set port to 7001.And save.Now others can connect to your pc (Only 7001 port).Now go to your project and open data files(Client).Open confing and set IP to IP you got from whatsmyip or ipchicken.com.Check if port in config files is 7001,if not set it to 7001\. Now it should work :) I hope this helps
  3. Here you go a GUI editor template code .Just open notepad and paste this save it as .et .Open it in GUI editor by clicking on TEMPLATE button and draw it. You can easily figure out how it works.Btw you can add as many rectangles as you want :)

    Size=200,200
    Rec=100,100,50,50
  4.    ![](http://i.imgur.com/dXghzoM.png)                                    3.0

    **REMEMBER : APPLICATION NEED TO BE IN GAME FOLDER TO WORK!**

    Yeah I've finally done it!

    Ecipse Toolkit 3.0 has new nice desing and few new features:

    Menu screen should look like this:

    ![](http://i.imgur.com/7Op8BoB.png)

    Features:

    -GUI Editor

    It now contains templates so if you are using custom engines you can upload your template.

    It works like this:

    [vb]Size=500,500 'Size of image

    Rec=0,0,150,150 'Location and size of new rectangle

    'You can as many as you want rectangles[/vb]

    Now you can set that rectangle can be image and you can change title font

    ![](http://i.imgur.com/CxdkZDl.png)

    -Resources

    ![](http://i.imgur.com/Cyos3pX.png)

    -Color changer

    -Fixed saving it should be better now

    ![](http://i.imgur.com/lqK7Zbn.png)

    -Item and Spell icon creator

    ![](http://i.imgur.com/VLO4BBz.png)

    -Source editor

    You can replace something in code 

    ![](http://i.imgur.com/V4FprUm.png)

    -Button creator

    ![](http://i.imgur.com/YI0Z6zL.png)

    As you can see I removed MIDI converter because it wont work in EO.

    Please reply what I should add :)

    Thank you for reading this

    Download Eclipse Toolkit 3.0 [Here](https://www.mediafire.com/?6n99u6rd5e0r2rl)
  5. Have you looked if it's the same format like it needs .bmp and you added .png.If not open default background in paint and paste your custom background.Remember that custom background needs to be same size as default.

    If that doesn't work open source and try to change background :)
  6. Its fine. ET 3.0 will be released soon and it will have system to update every new engine :)

    So everyone can create a file with data and post it on forum you download it open it with ET and you can make custom GUI for custom engines.

    Also it will have source editor so you can download source code and easily add it in your engine.So adding source wont take 1 hour if you are newbie.

    Im also adding nice desing :)
  7. I dont know much about Eclipse Worlds but you can always use Eclipse Toolkit.

    [http://www.eclipseorigins.com/community/index.php?/topic/136582-eteclipse-toolkit-20/](http://www.eclipseorigins.com/community/index.php?/topic/136582-eteclipse-toolkit-20/)

    If you want more advanced desing you should wait for version 3.0
×
×
  • Create New...