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. **                                      GOLF'S POKEMON ENGINE v.1**

    Hello today I will just show you few screenshots and add feature list for my new Pokemon Engine.

    Its pokemon mmo engine developed by me.

    Thanks to my team I have Complete GFX and tons of paperdolls.

    I dont know if I'm going to give this engine for free because I'm going to use it for my own project.

    Features:

    -Pokemon battle with original demage formula.

    -Trade

    -PvP battle 1vs1

    -.wav and .mp3 music player

    -TP system ( Pokemon training points - After each level you get 3 TP)

    -Unlimited size maps (Yes you can set your map size to every size you want but its not recommended)

    -Pokedex system (493 (Generation IV) pokes)

    -Bag system

    -Natures

    -News system(FTP Needed)

    -Pokemon  editor (Edit every pokemon in pokemon editor form. Engine already contain full pokemon database)

    -For now it  reads tiled maps but I will add my own map editor soon (Blocks are available now)

    -Shop 

    -Auction (This is not available for now)

    -Jukebox

    Screenshots:

    Only 2 but its ok? :/

    This charizard is flying ..(Animation)

    Login:

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

    Main game:

    Click on pokemon for informations.

    Double-click to close.

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

    Please reply

    You can check my current project website - [www.pokeearth.com](http://www.pokeearth.com)
  2. I've finally fixed a pet summon problem.When you are on the edge of the map and if you summon your pet server will just crash!

    I was so stupid to fix it so I thinked 2 hours until logical explanation came into my head :P

    Its very easy.

    We will just need to edit **SERVER SIDE**:

    In modGameLogic,in sub NpcTileIsOpen find this:

    ```
    If MapNpc(mapnum).NPC(LoopI).IsPet = YES Then
    If Map(mapnum).Tile(x, y).Type = TILE_TYPE_WALKABLE Or Map(mapnum).Tile(x, y).Type = TILE_TYPE_NPCAVOID Or Map(mapnum).Tile(x, y).Type = TILE_TYPE_HEAL Then
    NpcTileIsOpen = True
    Exit Function
    End If
    End If

    ```
     Now replace it with this:

    ```
    If MapNpc(mapnum).NPC(LoopI).IsPet = YES Then
    If x >= Map(mapnum).MaxX Or y >= Map(mapnum).MaxY Or x <= 0 Or y <= 0 Then
    NpcTileIsOpen = False
    Exit Function
    Else

    If Map(mapnum).Tile(x, y).Type = TILE_TYPE_WALKABLE Or Map(mapnum).Tile(x, y).Type = TILE_TYPE_NPCAVOID Or Map(mapnum).Tile(x, y).Type = TILE_TYPE_HEAL Then
    NpcTileIsOpen = True
    Exit Function
    End If
    End If
    End If

    ```
    Now when you replaced it server wont crash anymore :) If you are on edge of the map you cant summon pet anymore and server wont crash !
  3. Please help.

    I added pet system with spells so pet(npc) can use spells randomly.

    Can someone please write down how can I use pet spells manually when i click on button or something ? ty :)

    Second problem is when I try to summon pet on the end of the map i get error ?

    Error code:

    ```
    If MapNpc(mapnum).NPC(LoopI).IsPet = YES Then
    If Map(mapnum).Tile(x, y).Type = TILE_TYPE_WALKABLE Or Map(mapnum).Tile(x, y).Type = TILE_TYPE_NPCAVOID Or Map(mapnum).Tile(x,y).Type = TILE_TYPE_HEAL Then
    NpcTileIsOpen = True
    Exit Function
    End If
    End If

    ```
  4.                                                                          ![](http://i.imgur.com/sNjspfq.png)                    NEW VERSION [HERE!](http://www.eclipseorigins.com/community/index.php?/topic/136889-et-30-eclipse-toolkit-30/)

    I have finally done next version of Eclipse Toolkit and its more advanced than ever.

    I really worked hard to get this done for you and for the begginers this will be huge time saver (It will change your life).

    I've added some  advanced  features like **Auto Detect** in color changer : It detects what is back color of the picture when you upload it.

    Also I've added some new forms : **GUI Editor** and **Resources Editor.**

    **This application needs to be in game folder!**

    **Some details about application : Made in VB.net .90% of application is using System.Drawing.**

    Now the most interesting part:

    **Features:**

    ***This is how starting form should look like:**

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

    ***GUI Editor - Best feature for begginers because you can create main form GUI in 1 min.**

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

    ***Resources editor **

    ![](http://i.imgur.com/27biOtl.png)ž

    **Feature "Open in color changer" is added**

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

    ***Color changer - Added auto detect (Details on top) - Very useful option , Fixed transparent to color bug**

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

    ***Item and spell editor(Maker)**

    **![](http://i.imgur.com/2iJ4YKU.png)**

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

    ***Button creator : Added background option so you can add your own background.**

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

    ***Midi converter**

    **![](http://i.imgur.com/9cRyr1K.png)**

    **Please comment if you want more and what do you want to add!**

    **DOWNLOAD LINK - [MEDIAFIRE](http://www.mediafire.com/download/ularhz1kklc2v83/Eclipse+Toolkit+2.0.zip)**

    **I'm really good at VB.Net and if you need me just send me PM.**

    **Thats all for today :)**
  5. Oh,everything works fine for me.

      I will not release 1.3 , it will be 2.0 and it will take few days maybe week to get it done.

      I will add complete gui editor for EO 2.0 and 3.0 , I already fixed all the bugs and added resources editor with option to send any picture (Char,tileset,paperdoll…)  to color changer so its easier and you dont need to search for the files in open dialog.

      For new version you will need to  put it in your game folder(Just for devs)
  6. Just released new version and new features are added @[member="Baron Mohenjo Daro"] COLOR PICK is added and it is 100 times more easier with color pick now!

    I fixed color changer so you can now change background to transparent with no bugs or something! 

    [New version](http://www.eclipseorigins.com/community/index.php?/topic/136574-eclipse-toolkit-12/)
  7. _**Eclipse Toolkit 1.2**_

    **Updated (I gave you wrong download link)**

    [**NEW VERSION HERE!**](http://www.eclipseorigins.com/community/index.php?/topic/136582-eteclipse-toolkit-20/#entry935367)

     **What is Eclipse Toolkit?**

    Eclipse toolkit is free and easy app to use that help you in graphics and music problems!

    **  Why should I use Eclipse Toolkit?**

     Because it is a huge time saver for everyone who wants to make his own game with eclipse!

    **  Credits:**

     -Golf - Coding - PM me if you want to help me 

    ** Features:**

    ** Color changer is fixed so you can now change background to transparent!**

    ***Tileset and character color changer - **Upload image , pick old color , pick new color , change color and save it!

    ** - **added  new option : Color pick ( Click on color you want and its selected)

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

    ***Item and spell creator - **Upload icon you want (Remove backgound - optional) , choose back color , create it  and save it !

    **-**new feature added : **Color selector**

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

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

    ***MIDI converter**

    **![](http://i.imgur.com/9cRyr1K.png)**

    ***[NEW] Button creator** - Type text you want, upload icon , draw it and save it!

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

    **Future list:**

    -Complete GUI Editor (40%)

    -Animations creator  (0%)

    **PLEASE  TYPE WHAT YOU WOULD LIKE TO ADD IN ET 1.3 IN COMMENTS**

    **Download it [HERE](http://www.mediafire.com/download/2hdffkhndd3ellq/Eclipse+Toolkit+1.2.zip)**
  8. > In visual studio, hit Build > Build Configuration.
    >
    >  
    >
    > Set the platform to x86\. If it is already x86 set it to AnyCPU, hit okay, then go back and set it to x86 again. That should fix it.

      I fixed it by installing Visual Studio 2012 . Now it works :D
×
×
  • Create New...