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

Me Gusta

Members
  • Posts

    208
  • Joined

  • Last visited

    Never

Everything posted by Me Gusta

  1. Me Gusta

    Updater

    Here's a tip: Find what you're good at doing then post a topic or Learn how to do something then post a topic. :P
  2. Eclipse origins does not use scripting it uses source coding.
  3. I'd have to agree with Aeri on his theory, anyway time for my niceness Try learning pixel art and VB6 then coming back. I honestly hope someone deletes this topic though.
  4. Jaxx if at some point you stop making this I'll continue it. Also have you tried adding my server status checker?
  5. All I have to say is either find what your good at and use that to make agame and get a team together or practice at something then try.
  6. @7804364: > i want to be apart of it, i just want to to be better lol If you want it to be better you should contribute yourself then maybe it'll just be a bit better.
  7. @MichaelNeroZ: > Hei Jaxx i sugest you make the next update with the feature Custom Gui,Well its like FullScreen Mybe,So what do you think..? I believe* that Zopto is continuing this in his own topic. *not sure.
  8. @Jaxx: > Maybe… Oh! Nice job making Junior Member! Thanks. All it takes is 100 post :P on topic: Well good luck on the arena thing.
  9. @Chief: > > implying you won't get banned before then I won't thank you.
  10. After using my idea if you do. I would try making backups then toying with the code to see if you can get them to be themselfs and have a smart AI.
  11. @Zopto: > portable vb6 works for me dont try to exemple him somting he hawe 7 years….....and he dont know how to load client You know what I don't know why I put that link I used VB6 portable for a while.
  12. @Jaxx: > WHOH guys. What you are talking about is way more complicated than what I had in mind. I'm not Niall. I'm just a beginning coder. A novice. So….. yeah My way of having you be the pets would be a good idea and easier for you then.
  13. @MichaelNeroZ: > Actually i am using the VB6 Portable. http://www.touchofdeathforums.com/smf/index.php/topic,61053.0.html
  14. Nice job Rithy I might use this.
  15. @Düsk: > ![](http://oi42.tinypic.com/35a3p90.jpg) > Lazy'd out on the hilt, bleh my mind cant work diagonally D: This is my favorite sword.
  16. I think I saw it. Next April fools I'll record my screen 'till I find it.
  17. I agree with Niall it would be dull just to see them rush at each other then sit there going. "Bam I hit you" it would be interesting if they used spells and tried to run away and such. Or you could make the players take control once summoned which sounds like a lame way of doing it.
  18. @Gamzee: > Could you add a screenshot or be a little more specific please? ^^ I agree. So we can see whats wrong and stuff. and blah blah blah.
  19. @MichaelNeroZ: > the client.vbw/vbp? client.vbp I believe.
  20. Me Gusta

    Quest System?

    @Soltira: > Hey guys, > > So I was searching for Barons Quest System and I found the link to it and a ton of other things that would be amazing to have for my game, but… > > "The topic or board you are looking for appears to be either missing or off limits to you." > > ...Yeahhhhhh. So is there an alternative quest system I would be able to use? Well I'm not sure what version of eclipse you're using. But here is altars quest system: http://www.touchofdeathforums.com/smf/index.php/topic,70502.0.html
  21. Nice tutorial, but I believe this should be in Source.
  22. http://www.touchofdeathforums.com/smf/index.php/topic,79281.0.html
  23. @Growlith1223: > Have you tested this to see if it even works? @Me: > I've tested this it works.
  24. This is a tutorial to bring back a feature from EE/ES for EO2\. That feature would be the server status checker. What this does(if it isn't obvious to you) is tells you whether the games server is online or offline. Now to begin. **Client** *This is all client sided Form Okay open up your source and go to frmMenu and create 2 labels and a timer: Timer: Name: tmrStatus Top: 0 Left: 0 Interval: 2000 Label 1: Place anywhere you want label name: lblWTF(name whatever) Caption: The Server is: Font: Georgia Font style: bold Color: White Label 2: Place next to label 1 label name: lblOnline Caption: Checking… Font: Georgia Font style: bold Color: White Code Okay now that the form work is done open up the frmMenu code and create a private sub called: tmrStatus_Timer it should look like this ``` Private Sub tmrStatus_Timer() End Sub ``` in the sub put: ``` If ConnectToServer(1) Then lblOnline.Caption = "Online" lblOnline.ForeColor = vbGreen Else lblOnline.Caption = "Offline" lblOnline.ForeColor = vbRed End If ```This will check if the server is online. If it is then it'll say Online in green. If not it'll say offline in red. After all this your code in Private Sub tmrStatus_Timer should look like this: ``` Private Sub tmrStatus_Timer() If ConnectToServer(1) Then lblOnline.Caption = "Online" lblOnline.ForeColor = vbGreen Else lblOnline.Caption = "Offline" lblOnline.ForeColor = vbRed End If End Sub ``` Credit goes to: Nickpop123 For helping me figure this out. I've tested this it works.
×
×
  • Create New...