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

DarkSpine

Members
  • Posts

    181
  • Joined

  • Last visited

    Never

DarkSpine's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I like the style, looks pretty good. If you'd be interested, I have a project (Emberseal, link in the pic in my sig xD) that I'm working on, and could really use a pixel artist. (I'm not so great at pixel art, and you look pretty good at it.) (If you wanted to, you could be a developer too) ~Urame
  2. Player(MyIndex).job = 1 will set the player's job to 1. I was playing around with the source, trying to get it to send the correct variable, but for some reason it just wouldn't work… I'll prolly try more when I'm not tired xD ~Urame
  3. To set a job with these edits, do: ``` Player(MyIndex).Job = # ```Replacing # with whatever you want to set it to. ``` If Player(Index).Job = JOB_GUNDEALER Then btnGunDealer.Visible = True ElseIf Player(Index).Job JOB_GUNDEALER Then btnGunDealer.Visible = False End If ```The above may, or may not need Index replaced with MyIndex, also Player(MyIndex).Job _might_ need to have Index, rather than MyIndex, but I'm pretty sure all client-sided stuff uses MyIndex, and server sided is Index. Also, to test what it thinks your job is, make a new label somewhere visible on frmMainGame, and name it "lblJob". Now in frmMainGame``` Private Sub Form_Load ```add: ``` lblJob.Caption = CStr(Player(MyIndex).Job)]/code] If lblJob returns the wrong number, something is definitely screwing up. ~Urame ```
  4. @smokeythebear: > > That should do it, I'll be testing now, so wait until I've finished testing to add in =P > > > > ~Urame > > Ok… So have you tested it yetÉ Said so at the top of the post, this all works. @314piwm: > @Urame: > > > Search and delete in **modConstants**: > > ``` > > Public Const MAX_LEVELS As Byte = 100 > > ``` > > Now, in **modGlobals** add: > > > > > Public MAX_LEVELS As **Byte** > > Byte, not bye ;) Thanks for pointing that out, fixed, I prolly never would've noticed xD (I believe I wrote a lot of the code here, and then inserted it in VB6, so it was a simple quick-typing error) ~Urame
  5. Really good for a first try, I like it ^^ ~Urame
  6. @Robin: > @Urame: > > > New sword: > > ![](http://img709.imageshack.us/img709/1430/swordh.png) > > ![](http://img265.imageshack.us/img265/2456/swordbig.png) > > > > ~Urame > > Looks like you didn't learn anything from the tutorial. The palette is terrible. Ouch…I know the yellow is bad(I'm not good with palettes...If someone could point me to a site with some good ones, I'd appreciate it), but the rest is _from_ the tutorial =/ @Hayloskien: > *Shrug* it could always be worse,you should see some of the stuff I saw on the rpg maker forums You know, before I thought it was pretty good for a start, since I'm a coder, not a graphic designer (I'm _just_ starting to do items), now not so much. ~Urame
  7. @Hayloskien: > try this method Thanks, but I'm fine, got used to drawing diagonal (I have pixeled before this, but it was terrible) What do you think of the new sword? ^^ ~Urame
  8. New sword: ![](http://img709.imageshack.us/img709/1430/swordh.png) ![](http://img265.imageshack.us/img265/2456/swordbig.png) ~Urame
  9. Yeah…First I was mainly going for just following the tutorial, I'm gonna make a completely different one now. Only posted it to see if you could tell me if there were many errors, although I don't see any, that's from my view, not someone else's. ~Urame
  10. Here are my results: ![](http://img641.imageshack.us/img641/2900/newnewbswordbig.png) ![](http://img829.imageshack.us/img829/5/newnewbsword.png) Tried to follow your tutorial rather closely…What do you think? ~Urame
  11. Alright, note that I'm pretty newby when it comes to pixel art, soo, yeah. ![](http://img706.imageshack.us/img706/434/newbsword2.png)![](http://img826.imageshack.us/img826/9717/newbswordbig.png) ![](http://img822.imageshack.us/img822/8523/25453177.png)![](http://img691.imageshack.us/img691/8345/86428914.png) Which style do you think I should continue with? What can I fix? Thanks, ~Urame
  12. @Vitin: > Nice edit pretty original for eclipse.But only 2 people in a party? On-Topic: Origins only allows two people in a party, that's how it works, so it's not something with this code. Off-Topic: Vitin, you sit _in-between_ your chair and your pc? That's unusual…Most people sit on their chair...xP ~Urame
  13. @Ertzel: > With the way this is made its also really easy for people to add the option to have more people in there parties to fit there game. Im working on making parties old 10 people right now, only kindda hard party about it will be the way I'm trying to setup the imgPartyData to change sizes depending on the amount of people in a party so if u only have 2 people its not showing a huge box for 10 labels :P > > Thx for this base party system though cuz I had no idea how I was gunna try and add parties in before but this is the exact way I wanted it to work :P What you _could_ do, is have 5 buttons on the top, and each would show a different part of the menu via click, each menu containing two player's info, or have less buttons and holding more player's info. That way you can keep the menu smaller and still have it be as useful =P @Lightning: > @Urame: > > > Ehh, I was going for more of in-general, not necessarily parties. And a visual party system is pretty original in Eclipse, definitely not in MMOs, but in Eclipse =P > > > > ~Urame > > I completely agree. I have considered releasing other tutorials such as my Life Skills system in the past, but decided against it. Nice choice on that, can't let people get too lazy, not having to code anything for themselves, especially something like that which would help them get used to editing different parts of the source xP Again, nice edit, and also as for the tutorial, don't worry about clearness, yours is about as clear as it gets =P ~Urame
  14. @Jeff: > I'm assuming the tiles are still WIP? because I dont see very good transitions in many cases and also some of the tiles dont tile **perfectly**. o.o Perfectly…I don't think I've seen tiles that tile perfectly =P Btw, what transitions are you talking about? I don't really see areas that need transitions or that have any. Although the tiles are _very_ squary, might wanna change that. ~Urame
  15. When is Index ever set? Is there a portion of the code that sets it? If not, you need to have the client send MyIndex, and then have the handle code read it, and set Index to it, or have the client send the player's name, and use``` FindPlayer(Name) ```, after setting the variable name to the received data. I may be wrong, as I have been lately, but since nobody else has tried anything…And it's the only thing I can see that could possibly be screwing it up. ~Urame
×
×
  • Create New...