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

Officer Johnson

Members
  • Posts

    1170
  • Joined

  • Last visited

    Never

Everything posted by Officer Johnson

  1. > Kinda bland. But that's just my opinion. Each person will have a different opinion about it. alright
  2. > Have you tested your code? > > You're missing two end ifs. Not sure if vb6 will make a fuss of it but you should still add it in. Also remeber never to use hard coded values. Always use variables/constants where possible. Instead of checking if the player access is 1 you could check it against the constant Admin_Monitor. > > **Note: ** > > I don't think giving your players a message "Only the server admins" is going to be enough. > > > > My revised/fixed code. > > ``` > If frmServer.chkGMOnly.Value = vbChecked Then ' You can use 1\. Everyone uses 1\. > If Player(index).Access < Admin_monitor Then > Call AlertMsg(index, "Sorry. The server is accessible to admins only.") > end if > end if > > ``` > Also your instructions to add a form control aren't clear enough. You might want to **bold out statements or properties** names(Caption/Name). > > > > Not trying to demoralize your or anything. Just giving you some pointers for your next tutorial. yea nothing taking by it but what do you mean it won't be enough care to explain?
  3. > Change the MAX_LEVELS constant type into a Long, for both client and server. in mod constants like richy said Max_levels will be in server and client change byte to long then max number 100, 255 whatever to whatever u want then compile save and enjoy
  4. > This is perfect for games! This allows someone to make a public beta and after it's over keep this box checked all the time until the official release. yea lol anyone wanna test this and confirm it works properly
  5. Now i know this had been made before but in the tutorials i saw none of them worked or had bugs *****Updated on August 20, 2014***** **Didn't work as good as it could have before so making it a bit better also making it when check box is clicked the players get auto kicked!** **ServerSide** **Step 1** **ModGlobals** add this at bottom: ``` Public AdminOnly as boolean ``` Step 2 Create a checkbox on the server form wherever you want Name it **chkAdminOnly** click it and **input this:** ``` Dim i as long AdminOnly = Not AdminOnly If AdminOnly then For i = 1 to Player_HighIndex If Player(i).access = 0 then if isplaying(i) then Call AlertMsg(i, "The server is for admin only") end if end if next end if ``` now go to handlenewaccount **before:** ``` ' Prevent hacking ``` **add:** ``` If AdminOnly Then Call alertmsg(index, "The Server is for admin only") end if ``` at handlelogin **before:** ``` ' Check if character data has been created ``` **add:** ``` If AdminOnly Then If Player(index).Access = 0 then call alertmsg(index, "The Server is for admin only") end if end if ``` ok compile and enjoy :) let me know if it don't work or if theres bugs
  6. > Didn't found the exact section for that :l Would go in programming forum
  7. Hey rob can you do a eo 2.0 tut for house and auction system, if you got time how to do color text in server chat window all eo 2.0 if you can
  8. Introduction Hello everyone i am currently working on an engine which i'm calling eclipse modern my goal with this engine is to basically start from where it all began at EO.2 and i've added in a few features so far (Xp rate, admin only and so much more) but i wanna know what you guys want in the engine so simply post below what you would like and ill do my best to add it every new version So i'm hoping to have first version out by August 1, 2014 So far Features: Admin Only Xp Rate Player Editor (in server) Advanced Shop System As for once i get it done your free to use it and edit source just be sure to give credit Conclusion: Stay tuned for first release :)
  9. oh haha i dont use that, but i heard there working on new update might have to wait till then
  10. hey rob i was wondering if you could tell how to go about a house system i've tryed other tutorials and they just don't wanna work for me haha, and so far everything you say works, i want a house system where i can make furniture which they can add to there house they can have people in there house. also i want it that you buy the house but one house can only be built once thanks in advance bro.
  11. > I can't remember event system completely but there's some way to add at the Ned of it so it doesn't loop ill download event and try it out and see if I can tell you Ok so if I remember you need to set s player switch so sfter they get sword it's true and before sword it's false then every time they activate event it will be the text hope this helps
  12. I can't remember event system completely but there's some way to add at the Ned of it so it doesn't loop ill download event and try it out and see if I can tell you
  13. Show me some of your work if I like it will be in touch
  14. How are you adding the admin server or admin panel
  15. Is your game up to date try auto updater make sure your using right password could've been some server glitch
  16. will there be anything big for 4 or is 5 the new big deal?
  17. > Nah, guess Robin will be next nope i guess someone will post under me bet you cant beat that
  18. dude i love you work wow i might pm you soon
  19. Officer Johnson

    Guilds

    > Yes, but I mean have I missed something or will it be added in the future ect maybe (jc has said before maybe not because an eclipse game doesnt usually get more then 20 players)
  20. > Had this video in the suggestion bar on youtube. > > http://www.youtube.com/watch?v=zTKpp5lzahk exactly where i started too matt :)
  21. this has been asked before but i couldn't find an answer so i don't think so
  22. no you can't eo 4 is close source
  23. > I started up my server then used the client with the IP 127.0.0.1 and the port that goes with my server. I tried connecting to my server but it gave me a message saying "Your client or game server is outdated! Be sure you are launching the client from the Eclipse Origins Launcher and not eo.exe!" > > > > I used the launchers as opposed to the eo.exe and eoserver.exe and it still gives me the error. When the launcher starts it even says that I am up to date. I downloaded the most recent version off the website about a week ago anyways. > > > > Anybody know why this is happening? (Also, I have done port forwarding with my router, which has been able to host other server applications before) make sure your server is set to local host instead of your ip, second do you have the runtimes
  24. first you need visual basic 2006 only vb6 works, so if yo dont got that your out of luck buddy if you really want it look on ebay
×
×
  • Create New...