Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2018
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>mygame | Browser</title>
  5. <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
  6. <script type="text/javascript" src="../api.js"></script>
  7. <script type="text/javascript">
  8. function initialize() {
  9. var ROConfig = {
  10. type: ROBrowser.TYPE.POPUP,
  11. application: ROBrowser.APP.ONLINE,
  12. remoteClient: "http://play.mygame.com/client",
  13. width: 1024,
  14. height: 768,
  15. development: false,
  16. servers: [{
  17. display: "mygame",
  18. desc: "mygame Revolution",
  19. address: "94.99.190.98",
  20. port: 6900,
  21. version: 46,
  22. langtype: 12,
  23. packetver: 20170614,
  24. packetKeys: false,
  25. socketProxy: "ws://196.66.646.179:5999/"
  26. }],
  27. saveFiles: true,
  28. skipServerList: true,
  29. skipIntro: true,
  30. version: 1,
  31. plugins: {
  32. IntroMessage: {}
  33. }
  34. };
  35. var RO = new ROBrowser(ROConfig);
  36. RO.start();
  37. }
  38. window.addEventListener("load", initialize, false);
  39. </script>
  40. </head>
  41. <body>
  42. <input type="button" value="Run roBrowser" id="robrowser"/>
  43. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement