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

lel

Members
  • Posts

    526
  • Joined

  • Last visited

    Never

Everything posted by lel

  1. OMG I'm doing every single one of these! My game is going to fail! Maybe I should just start all over… Maybe I'll just quit! Edit: Don't forget they can't have a horrible logo!
  2. I got a dragon statue from FSM tile set and animated it into a dragon. Looks really good and works well =) So I'm good now.
  3. It seems that the one dragonI did see originally belongs to RTP which is enterbrain's whole sell sadly.
  4. lel

    Isometric Maps

    Very impressive. This will work for eclipse ? Or is it for something else… Or....?
  5. Need a dragon sprite/character that would match the RPG maker XP style or like MAC's First Seed sprites. This needs to be Under a Creative Commons ( I think 0) Basically it needs to be released as a "use it how you want, just don't sell the graphic itself and give creit to…" Thanks a lot for your help.
  6. Real shame I didn't make any ones list… =(
  7. > Wall of text attack. I'm sorry you typed too much for me to want to read. That seems like a lot to type just to say if you want to have Thanksgiving dinner with me or not thou.
  8. > If you're a good programmer you know how bad your programming is. I've never actually seen you say a bad thing about your work around here. Not without some excuse like "It was done in a rush." or "I was drunk." Not that those are excuses I've actually seen you use. Anyways… Take that how ever you want. Thanksgiving is coming here soon, I was hoping you could celebrate with our family, turkey and pumpkin pie, the whole shebang', you know... since you missed us on the fourth of July and all.
  9. I can't even think of 10 programers honestly.
  10. > Hi, Im thinking about buying gold, but I have a few questions. > > Can i make my game browser based? If so what is required? > > Can you play a game made with eclipse origins on any computer inc. mac? > > Can they be played with iPad/iphone and or android? As of now, "No." Not with 4.0\. Any other custom version I know that does this is buggy or not even finished. There are very solid plans to make the game work on browsers and other OS's like Droids and I phones/Pads. I have seen a work in progress versions of eclipse being made by the same people that brought to you 4.0. It wasn't something to get overly excited about, and not reason enough to buy Gold alone on its on ;however, what I was shown did make me feel very confident that will finish it and release it for sell to people that have not bought gold. I was told by one of the 300 people developing the engine that if you a version of gold, you will not have to make a second purchases for the new not officially named eclipse V. > What are the terms of use for using gold? Why is lel so cool? You must sell your soul to Amish or pay him 59.95 USD Once this price has been paid you can make your game and sell your game as you please ( assuming you have not used any illegal resources in your game I.E graphics, music, or sounds. While I have not heard this stated, I'm sure it safe to say you can not sell your copy of gold ( as in the engine itself) to someone else. lel is so cool because he talks in the third person some times, is married, and loves eclipse if 1/4 of his heart. Why have you let lel misquote my questions? Well….. you did say you might have more questions, but we're sorry your time for asking questions has expired.... We will investigate your concern, after the site delete all of the posts we will look for any evidence that proves without a doubt lel has misquoted your posts. If found guilty, he will be grounded.
  11. Oh the End Sub was actually already put in the right spot. That was my goof when pasting the code in the first place v.v
  12. What do you mean you missed it? Do you have the same problem in your engine?
  13. I'll agree with that, but do you know of any thing that adjustment would conflict with?(just off the top of your mind)
  14. My new problem is that playing a sound using events causes the sound to keep playing over and over every half a second (or less) this makes the game lag really badly. I think there is a little more detail to this than I know. I was able to make an event where someone gets attacked and a sound played once they got attacked, with no problems.) So I have some investigating to do. Thanks for your replys guys, you helped allot.
  15. ``` Sub StopSound(soundindex As Long) FSOUND_StopSound Sounds(1).Channel End Sub ```Fixes the error.
  16. Edit: I forgot my version of FMOD doesn't play sounds under IDE or under source mode if you will. Replacing the (soundindex) with a 1 making it (1) instead of (soundindex) keeps the error from accruing. Now when sounds are set to play again from that event it will play the sound ;however, it freezes the client. No error message or anything.
  17. Weird, so I actually want to see how sound is starting and not the area that sound is being stopped? Ok I will look into it. Is there any values that " too high" would look like ?
  18. Anyone happen to know whats wrong with this area? Client side under General ``` Sub StopSound(soundindex As Long) FSOUND_StopSound Sounds(soundindex).ChannelEnd Sub ``` Highlighting "FSOUND_StopSound Sounds(soundindex).Channel" With Runtime error 9 subscript out of range like 90% of all the errors. I was trying to add an event that starts and stops a sound at random. While the sound is playing it seems everything is ok (I'm not 100% sure yet, as my client is crashing on me) I have tried a few things I.E. looking at other peoples code (most other working code is in BASS >.> ) and such. I guess I would be lying if I said I am not starting to go from loving FMOD to hating it. Any help would be appreciated.
  19. After buying the buyer can use these as they please for a commercial game? If I recall we just can't go and sell them to someone else correct? That Aside I personally feel like the two Acorns are going to be the ones that will target most people in this area of gaming.
  20. > never the less it was a major feat for this engine and lel's mother is incredibly awesome for giving birth to him =) JC's event system release was a "major feat for this engine" as well. When first released it came with huge amounts of bugs and mishaps. After time, other variations/versions were made with either improvements and/or additions to make it better. All it takes is one person to say something like….... " I can make this 3D and stable..... It will take a lot of work and rewriting on my part ( basically rebuilding the whole engine.) But I can do this......" and yes my mother is awesome thank you.
  21. I'm making paperdolls now, and goodness….. I find myself switching between all kinds of grids off and on...... One in particular I don't even understand how I got working lol......
  22. > i dont wanna give a price range, because someone will obviously take the highest price Then simply list a low ball price to the highest price range "if someone could add editors to the 3D engine."
  23. lel

    Animating Panoramas

    I was looking at this ``` Public Sub CheckPanoramas() Dim I As Long ' If debug mode, handle error then exit out If Options.Debug = 1 Then On Error GoTo ErrorHandler I = 1 NumPanoramas = 1 ReDim Tex_Panorama(1) While FileExist(GFX_PATH & "Panoramas\" & I & GFX_EXT) ReDim Preserve Tex_Panorama(NumPanoramas) NumTextures = NumTextures + 1 ReDim Preserve gTexture(NumTextures) Tex_Panorama(NumPanoramas).filepath = App.Path & GFX_PATH & "Panoramas\" & I & GFX_EXT Tex_Panorama(NumPanoramas).Texture = NumTextures NumPanoramas = NumPanoramas + 1 I = I + 1 ``` And originally I wanted to simply make it read .gif files; however a programmer recommended against it saying it might slow the system down and that I should make it read 3 different pics after like half a second and loop those pictures. I talked to a friend of mine and he looked at the code but it not familiar with eclipse. He recommended something like after NumPanoramas = 1 Set_Panorama () If Map.number = X Map.Panorama = File beginning of animation picture that I set I = 26 While I does not equal 30 Timer Switch X 26 So basically if it is some map number then it will read files say 26 to 29. Start from 26. Change to the next highest number. Get to 29, start over. Loop I would have to do this for every map number I want this effect. I did recommend to him we make a check box so that if a box is checked in map properties it would switch to reading two different panoramas file numbers and animate them and the numbers in between them. He didn't like this idea for whatever reason, but I think it is because he is unfamiliar with Eclipse. He might have just thought of the fastest way to do it in general thou. IDK. Anyways guys please don't judge him he is just trying to help and the code I posted above was just a rough draft idea he made. I have came here just asking for a little more help into what areas I might want to change and if I might have to make some server changes too. To anyone that cares… My friend is very familiar with code, I am very farmilar with Eclipse.Him and I are going to start looking at the code together ( over a few minutes or hours a day for about a week.) and hopefully I will end up learning how to program myself in the end. With your help guys I will end up learning this too no doubt.
  24. I can use you I'll send you a pm. I want done artwork just like what you have show cased.
×
×
  • Create New...