• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • It's time to vote for your favorite Pokémon Battle Revolution protagonist in our new weekly protagonist poll! Click here to cast your vote and let us know which PBR protagonist you like most.
  • 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.
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.
 
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.
 
might b a good idea if you release a quick demo with your new codes working


got nothing worth a demo yet, except my BETA MySQL mystery gift system in my sig...
 
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