• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Pokemon Essentials Online?

Revive it?

  • YES!!!! I'D BE GREAT

    Votes: 15 93.8%
  • Yeah

    Votes: 0 0.0%
  • Not so much

    Votes: 1 6.3%
  • Have mercy on us all DON'T MAKE IT!

    Votes: 0 0.0%

  • Total voters
    16
Status
Not open for further replies.

PiaCRT

Orange Dev
937
Posts
13
Years
  • This looks good! I always wanted to use that online Essentials, but it was so lacking in features and buggy. This will be fun to use once it's finished. Also, good call on using Netplay, I can't stand RMX-OS.
     

    Nyndyll

    PD : O Creator
    34
    Posts
    12
    Years
    • Seen Apr 10, 2014
    Hey, ho-oh, can i possibly borrow some the scripts you made?
    (You'll get credit in my game - promise!)
     

    Ho-oh 112

    Advance Scripter
    311
    Posts
    13
    Years
    • Seen Mar 8, 2014
    Right since the new release of Essentials I've gone ahead and decided to use mySQL to make a better online system from scratch so I don't have to go and guess on how to do the stuff so I can just go ahead and make it and fix up glitches faster.
     
    423
    Posts
    13
    Years
    • Seen Aug 31, 2023
    might b a good idea if you release a quick demo with your new codes working
     
    423
    Posts
    13
    Years
    • Seen Aug 31, 2023
    ah fair enough so will you be doing trade via mysql and wot about battles?
     

    Ho-oh 112

    Advance Scripter
    311
    Posts
    13
    Years
    • Seen Mar 8, 2014
    ah fair enough so will you be doing trade via mysql and wot about battles?


    Yup, and OF COURSE!


    sample script i guess....


    Code:
    def pbLoadSample(host,user,pass,base,port,currentuser,currentpassword)
    mysql = Net::Mysql.new([host,user,pass,base,port])
    sample = mysql.list_tables([GAMECODE, "SampleUsers"])
    testuserary = sample[0].unpack(PACKCODE)
    testpasswordary = sample[1].unpack(PACKCODE)
    for i in 0..testuserary.length
    if currentuser = testuserary[i]
    x = i
    end
    if currentpassword = testpasswordary[x]
    Kernel.pbMessage(_INTL("Logged in...."))
    end
    end


    thought I'd give a "sample script" which is a logging in check function....

    I just threw this out randomly to give everyone a peice of my "MySQL" knowledge...
     
    Status
    Not open for further replies.
    Back
    Top