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

[Will PAY] Character creation - Skyware v7


MeKonster
 Share

Recommended Posts

I'm looking to pay someone or have someone from the kindness of their heart, rip or create a character creation plugin for skyware v7\. I cant seem to get vb to work on my pc, and its really not worth fighting with it. It seems like a simple task if you rip the one from the EO source- the current main download.

Name your price or link me after compiled :)
Link to comment
Share on other sites

@'Aurelijus1':

> I have created on my own engine  that when you create new character you can choose body, face, hair, legs and color them ^_^ Maybe when i have some time I will create tutorial.

that would be amazing. I'm just interested in having it added to Skywyre v7 though, from what I understand you can just copy files over and it works? I know its not that simple but. I cant get it vb6 to run right on my computer- anyhelp would be lovely!

* * *

@'sherwin':

> What character creation?
> Do you mean Multiple Character on one account? or Skin Character Editor? or Alien Maker?
> What do you mean by that?

I mean, character customization. So skin wise yes! for 3x4 sprites like the ones in VX.
I would love anyone forever for helping out- or i can straight up pay for it.
Link to comment
Share on other sites

@'BeNjO':

> Tutorial that Aurelijus1 used:
>
> ![](http://i.imgur.com/sW2DErM.png)
> ![](http://i.imgur.com/TAShk8I.png)
>
> http://www.freemmorpgmaker.com/thread-4757.html?highlight=customization

First time seeing it, it would have helped me alot. Anyway what makes you think that I use it? My and this system similar only because it has scrollbar too, because it's make able to change body parts to any color and I think it's the easiest way to create a color changing system. The RGB color model is an additive color model in which red, green, and blue are added together in various ways to reproduce a broad array of colors
Link to comment
Share on other sites

@'Aurelijus1':

> @'BeNjO':
>
> > Tutorial that Aurelijus1 used:
> >
> > ![](http://i.imgur.com/sW2DErM.png)
> > ![](http://i.imgur.com/TAShk8I.png)
> >
> > http://www.freemmorpgmaker.com/thread-4757.html?highlight=customization
>
> First time seeing it, it would have helped me alot. Anyway what makes you think that I use it? My and this system similar only because it has scrollbar too, because it's make able to change body parts to any color and I think it's the easiest way to create a color changing system. The RGB color model is an additive color model in which red, green, and blue are added together in various ways to reproduce a broad array of colors

I'd say you copied it and just played around with it.
Link to comment
Share on other sites

@'BeNjO':

> Tutorial that Aurelijus1 used:
>
> ![](http://i.imgur.com/sW2DErM.png)
> ![](http://i.imgur.com/TAShk8I.png)
>
> http://www.freemmorpgmaker.com/thread-4757.html?highlight=customization

So Im stuck;

find DrawPlayer and under
```
Call DrawSprite(Sprite, x, y, rec)

```add
```
Call DrawHair(x, y, GetPlayerHair(Index), Anim, spritetop, GetPlayerHairTint(Index))
and at the bottom or somewhere in the module add
```
There is no DrawPlayer under DrawSprite except in the ERROR and that cant be right.
Link to comment
Share on other sites

@'Essence':

> @'Aurelijus1':
>
> > @'BeNjO':
> >
> > > Tutorial that Aurelijus1 used:
> > >
> > > ![](http://i.imgur.com/sW2DErM.png)
> > > ![](http://i.imgur.com/TAShk8I.png)
> > >
> > > http://www.freemmorpgmaker.com/thread-4757.html?highlight=customization
> >
> > First time seeing it, it would have helped me alot. Anyway what makes you think that I use it? My and this system similar only because it has scrollbar too, because it's make able to change body parts to any color and I think it's the easiest way to create a color changing system. The RGB color model is an additive color model in which red, green, and blue are added together in various ways to reproduce a broad array of colors
>
> I'd say you copied it and just played around with it.

I have replied it for BeNjO
Link to comment
Share on other sites

@'Essence':

> @'Aurelijus1':
>
> > @'BeNjO':
> >
> > > Tutorial that Aurelijus1 used:
> > >
> > > ![](http://i.imgur.com/sW2DErM.png)
> > > ![](http://i.imgur.com/TAShk8I.png)
> > >
> > > http://www.freemmorpgmaker.com/thread-4757.html?highlight=customization
> >
> > First time seeing it, it would have helped me alot. Anyway what makes you think that I use it? My and this system similar only because it has scrollbar too, because it's make able to change body parts to any color and I think it's the easiest way to create a color changing system. The RGB color model is an additive color model in which red, green, and blue are added together in various ways to reproduce a broad array of colors
>
> I'd say you copied it and just played around with it.

OI! if your not going to help, take it to PM's. I'm asking for straight forward help, if your not here to help, then why are you here?
Link to comment
Share on other sites

@'MeKonster':

> So Im stuck;
>
> find DrawPlayer and under
> ```
> Call DrawSprite(Sprite, x, y, rec)
>
> ```add
> ```
> Call DrawHair(x, y, GetPlayerHair(Index), Anim, spritetop, GetPlayerHairTint(Index))
> and at the bottom or somewhere in the module add
> ```
> There is no DrawPlayer under DrawSprite except in the ERROR and that cant be right.

Ah, you must be using Skywyre. Not a hard fix… here's the deal - you are correct to avoid the Error statements. Scroll down a bit and you'll see DIR_DOWN, DIR_UP, DIR_LEFT and DIR_RIGHT. You'll need to handle each separately, so under **Call** **DrawSprite**, you'd add the code. Like this:

```
Case DIR_DOWN

   If GetTickCount > Player(Index).StartFlash Then
       Call DrawSprite(Sprite, x, y, rec, a, r, G, B)
       Call DrawHair (x, y, GetPlayerHair(Index), Anim, spritetop, GetPlayerHairTint(Index))
       Player(Index).StartFlash = 0
   Else

       Call DrawSprite(Sprite, x, y, rec, a, r, G, B, True)
   End If
```
So that one uses DIR_DOWN as an example… find the code for DIR_UP, DIR_LEFT and DIR_RIGHT, add the code below DrawSprite and it should work. Let me know if you need assistance. It does work, promised.
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...