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

hisherwin

Members
  • Posts

    1964
  • Joined

  • Last visited

    Never

Everything posted by hisherwin

  1. > That I have to say is, this could be soooo useful It's not funny. This I think may help alot of peopleā€¦. Aha, Thanks for complementing it.. I think it does give people an new idea, and it's easy to do it.
  2. > I was noticing you had an alph adjusting slide. Is that just for the selected tile or for the whole layer? Cause I like the idea of having that in an editor. Very clean looking work.. ![](https://scontent-b-hkg.xx.fbcdn.net/hphotos-xap1/v/t1.0-9/10300209_758236407578704_6495238734207486203_n.jpg?oh=ff19728f990c0b4951137ec19e3018f7&oe=549B774D)
  3. v1.0.0 Map Editor [https://www.sendspace.com/file/gp2hhk](https://www.sendspace.com/file/gp2hhk) Please make sure to report any seen bugs/mistakes on the application.. Enjoy making maps :D Note: add this RPG.exe on the same folder with your MapEditor.exe to see a full view of the map you made [https://www.sendspace.com/file/8ioa65](https://www.sendspace.com/file/uuqq8w) Screenshot: ![](https://fbcdn-sphotos-c-a.akamaihd.net/hphotos-ak-xaf1/v/t1.0-9/10177291_758330800902598_3860064528442057037_n.jpg?oh=23bacc93a17c3a41b997941e93cd9e2c&oe=549229CE&__gda__=1417870719_b2f7754669b4b46dcb0fa99efc1fb485) ![](https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-xfa1/v/t1.0-9/10612721_758330730902605_1545682557760189087_n.jpg?oh=dd7922c5bbfb4dfbc55d25dcedc82bd9&oe=54A34C83&__gda__=1420383669_d6c0042ef3d0182b8fe82c943dac5b42)
  4. No need for Night Tilesets if you are using DX8, and it looks better than using a Tileset like those
  5. Bad idea if the warping is free.. Must have a Time Interval or a Price
  6. The name color, The Theme was decided by the owner of this forum.. No one complain about this stuff ever since the forum theme was changed.. You are the first one, If you don't like it, then change the theme. PS: As long as it is readable, People are "OKAY" With it
  7. Sorry to break your moment Mohenjo Daro.. I can't agree with your point. It's not that there is only one type of Developers. You are currently pointing about the people/players/staff who are a **In-Game Content/World Developer**, Those are the people who develop the game in-game like creating items/spell/maps etc., But there are those **Game Engine Developer,** Those are the people who develop the game engine itself. **Programmers **is just what people call other people who know how to **Program **using any programming language they know. But once they begin programming an engine or a application, They undergo developing that engine itself.. EDIT: PS: I also doesn't agree with xx procoder xx, You don't have to learn programming to become a game developer, What's EO 4 for if you need to learn programming?
  8. Update 3 Version 1.0.1 - New Gender Selection >! ![](https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-xfp1/v/t1.0-9/10544409_751955054873506_5218035839972263593_n.jpg?oh=b6e55d25050c35cb5af88e99c219d954&oe=5469733F&__gda__=1416906934_e372b34d53da56a2f84cbf3494d93276) >! ![](https://scontent-a-hkg.xx.fbcdn.net/hphotos-xpa1/v/t1.0-9/994489_751955058206839_4787728287762935512_n.jpg?oh=e05019c746ec11b9a96d9f01d1ea8b85&oe=546C543B) ~ Interface Created by Eternal Arts Team ~
  9. Nice Sprite.. Your giving them away?
  10. Server Folder - > Data -> Maps -> Erase all data Server Folder -> Data -> NPCs -> Erase all data Server Folder -> Data -> Items -> Erase all data etc.. That's how you start all as blank.
  11. Why do you have to pay for an Old Programming Language?
  12. > We're still using your source Oh i thought you switch engine.. it's impressive that you guys manage to survive on my source, it's kinda messy on my view.
  13. I see, What language do you use on this projecT?
  14. Update 2 Version 1.0.1 - Interface Editor (I did not make a Interface editor inside the game because i don't want to mess with things or increase the number of codes written on the client source :D *Peace*) >! ![](http://i.imgur.com/toQbxW3.png)
  15. Update 1 Version 1.0.1 - Switch to DX8 - Added a GUI Editor for the position of the GUI and render the GUI automatic once a new image added >! ![](https://scontent-b-hkg.xx.fbcdn.net/hphotos-xap1/t1.0-9/p403x403/10639572_750349475034064_3803274765971336919_n.jpg)
  16. I decide to switch on DX8 Got everything set already, I'll post more update about the new Engine i developed.
  17. There's something wrong with this website -.- Let me update my last post for you.. just wait for a moment
  18. EDIT: DELETED!!! THE WEBSITE DOESN'T ACCEPT MY POST!! I'll PM You on what to do
  19. > Not sure about this why don't you change > > ``` > ' next class > NewCharClass = NewCharClass + 1 > If NewCharClass > 3 Then > NewCharClass = 1 > End If > > ``` > to > > ``` > ' next class > NewCharClass = NewCharClass = 1 > If NewCharClass > 3 Then > NewCharClass = 1 > End If > > ``` Da Hell is this? On-Topic: Please give me more information about what you are talking about O.o, Are you planning to use a combobox or do you planned to render a button on changing the class?
  20. Update 14 - Created Player Pokemon Data - Render Player Pokemon Icon - Animated Pokemon Icon >! [http://eclipseorigins.com/community/filehost/d495783b9d08a65dc192a57a00028fa4.gif](http://eclipseorigins.com/community/filehost/d495783b9d08a65dc192a57a00028fa4.gif)
  21. He forgot to add the exit sub on this line ``` If AdminOnly Then If Player(index).Access = 0 then call alertmsg(index, "The Server is for admin only") end if end if ``` and here ``` If AdminOnly Then Call alertmsg(index, "The Server is for admin only") end if ``` it must be ``` If AdminOnly Then If Player(index).Access = 0 then call alertmsg(index, "The Server is for admin only") exit sub end if end if ``` and here ``` If AdminOnly Then Call alertmsg(index, "The Server is for admin only") exit sub end if ```
  22. > Hmm, I found a problem, not sure if it's just the version I'm using or what, but if I have someone as an admin then revoke the adminship they can still get on. Of course.. According to the code, It only kick players that are admin at that time, if it was revoked after being kicked then they can still play.. it's not done on a loop timer so it can't check if the player is admin or not everytime. To do the looping thing, on ServerLoop use the code that kick the player
  23. What's the different between 6 and 6.1?
  24. > There's almost always a way around, but I don't need the graphics to be all fancy like or I'd be working on a 3D game, not a 2D pixel game Well i admit that i love retro games that's why i often use DX7
×
×
  • Create New...