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

Coder ($$$)


jsorr2
 Share

Recommended Posts

I have a pokemon mmo, based off eclipse advanced v3.0.20.

I need to add a pet system and have been using:

http://www.touchofdeathforums.com/community/index.php?/topic/116108-eo-lightnings-pet-system-completely-bug-free/page__hl__pokemon__st__0

source code.

It needs some editing to be able to run with my program, and am needing a coder to modifiy it slightly to:

-have the pet spawn on login

-have the pet follow while logged in

-have the pet depawn when logging out

I will be able to supply both server and client files.

will pay some money negotiated with whoever feels up for this.

And also, if they enjoyed the work, some future projects may occur where your assisstance may be needed.

Thanks ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/smile.png)
Link to comment
Share on other sites

In the server-side source, go to:```

Sub JoinGame(ByVal index As Long)

```and at the bottom of it add:```

' Spawn Pet

SpawnPet index, GetPlayerMap(index)

PetFollowOwner index

```

Then go to:```

Sub LeftGame(ByVal index As Long)

```and above Call ClearPlayer(index) add```

PetDisband index, GetPlayerMap(index)

```
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...