Advertisement
Guest User

Untitled

a guest
Feb 28th, 2016
655
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.09 KB | None | 0 0
  1.  
  2. VPS CONFIGURATION :
  3.  
  4. 1. Open PuTTY
  5. 2. Put your VPS IP address
  6. 3. Run , and click yes
  7. 4. Fill in root as username and put the password you recieved in your mail from digital ocean
  8. 5. Put your Password again
  9. 6. Choose a new password and confirm it
  10. 8. run these commands if you're using our VPS :
  11. apt-get update
  12. apt-get upgrade
  13. 9. your done , close this for now.
  14. -------------------------------------------------------------------------------------------------------------
  15.  
  16. WEBSITE CONFIGURATION :
  17.  
  18. 1. Open your website ip address in your browser and head over to yourwebsiteip/phpmyadmin go to 3. if you use your own server not set up by us ( phpmyadmin part ) if we did your phpmyadmin then go to 2.
  19. 2. Please contact us on this point as we need to give you the mysql settings.
  20.  
  21. 3. Head over to a FTP program, we highly recommend WinSCP
  22. 4. Connect to it with your details : IP , root , password , port22
  23. 5. Go on folder up, then go to var > www > html
  24. 6. Export the following files :
  25. - Defico.png
  26. - Link.php
  27. - Pdocon.php
  28. - Core.php
  29. - Endround.php & p2endround.php
  30. - Steamauth > settings.php
  31.  
  32. 7. edit all these files :
  33. -------------------------------------------------------------------------------------------------------------
  34. Defico.png : Replace with your own favicon
  35. -------------------------------------------------------------------------------------------------------------
  36. Link.php : Edit all your information. For the MySQL settings , use the login info for PHPMYADMIN
  37. The username and database is the same if we made your PHPMYADMIN database.
  38.  
  39. so you get :
  40. MysQl host = "Localhost"
  41. username = root
  42. password = ....
  43. database = root
  44. -------------------------------------------------------------------------------------------------------------
  45. Pdocon.php : Edit all your information. For the MySQL settings , use the login info for PHPMYADMIN
  46. The username and database is the same if we made your PHPMYADMIN database.
  47. If you configure this wrong , your site won't display item prices , it will show up as $NaN
  48. -------------------------------------------------------------------------------------------------------------
  49. Core.php :
  50. - Title : This will be shown in the top left corner and in the browser tab aswell.
  51. Add both bot's Steam ID's and Trade URLs ( these are bot steamid64's which can be obtained at steamid.io )
  52. - Optional : Add social media links
  53. -------------------------------------------------------------------------------------------------------------
  54. Endround.php & p2endround.php :
  55. - Set the secret code to something random so the site can't be abused this way. Remember the code, the bot should use the same one
  56. -------------------------------------------------------------------------------------------------------------
  57. Steamauth > settings.php :
  58.  
  59.  
  60.  
  61.  
  62. -------------------------------------------------------------------------------------------------------------
  63.  
  64. BOT CONFIGURATION
  65.  
  66. Edit all the following items in bot > bot.js
  67.  
  68. Line 32 : Sitepath - The full path to index.php of your site without http://
  69. Line 34 : Sitename - The name of your site, this will be shown in the bot's message to the winners
  70. Line 36 : APIKey - The api key generated ON THE BOT's account https://steamcommunity.com/dev/apikey
  71. Line 37 : SteamID ( 64 ) of the admin, can send commands to the bot, ask for the rake, etc
  72. Line 38 : BotSteamID ( 64 ) - The bot's steam ID, it is required to check for mobile confirmations
  73. Line 39 : IdentitySecret - The identity_secret of the bot, it is required for mobile confirmations
  74. Line 40 : SharedSecret = shared_secret of the bot's 2fa file, it's needed to generate the login code
  75. Line 41 : pooling_interval - No need to change it
  76. Line 42 : rsecret - Change it to the same code you put to p2endround.php and endround.php
  77. Line 44 : p2 - set it to true if this bot is for pot 2, set it to false if it's for pot 1. One bot should have this as true and the other as false.
  78.  
  79. Line 51 : Put your bot details like this :
  80.  
  81. "accountName" : "hereyoutype",
  82. "password" : "hereyoutype",
  83.  
  84. Line 84 : Fill in your MySQL Settings again
  85. -------------------------------------------------------------------------------------------------------------
  86. IF YOU WANT TO USE 2 BOTS REPEAT THIS PROCESS BY MAKING COPYING THE BOT.JS AND NAME IT BOT1.JS
  87. -------------------------------------------------------------------------------------------------------------
  88.  
  89. Time to configurate the 2 codes you have to fill in so your bot is compitable with Steam ESCROW.
  90. We are looking for the Identity_Secret and Shared_Secret
  91.  
  92. MAKE SURE BEFORE YOU DO THIS MOBILE AUTHENTICATOR IS TURNED OFF ON YOUR BOT AND THAT THERE IS NO PHONE NUMBER ADDED.
  93.  
  94. Method 1 : SDA ( Steam Desktop Authenticator )
  95.  
  96. 1. Open Steam Desktop Authenticator.exe located in Steam.Desktop.Authenticator.v1.0.0
  97. 2. Click you want to sign up for a new account
  98. 3. Go through all the steps
  99. 4. Go to the folder Steam.Desktop.Authenticator.v1.0.0 , and go to the map called maFiles and open yourbotssteami64 file with notepad++
  100. 5. Search for the Shared_Secret and the identity_secret , copy these codes.
  101. 6. Go to sell.js and paste them on line 6 and 7
  102. -------------------------------------------------------------------------------------------------------------
  103. MAKE SURE BEFORE YOU DO THIS METHOD MOBILE AUTHENTICATOR IS TUNRED OFF AND THAT YOU HAVE !!!!! ADDED YOUR PHONE NUMBER.
  104.  
  105. Method 2:
  106. Download Winauth at Winauth.com
  107.  
  108. 1. Click add
  109. 2. Choose Steam
  110. 3. username & password
  111. 4. Follow all the steps
  112. 5. When its all configured , right mouse click on the section, doesnt matter where.
  113. 6. Choose show steam data and recovery code
  114. 7. allow copy
  115. 8. get the secret and identity code
  116.  
  117. NEVER USE PROTECTION WITH THIS METHOD !
  118.  
  119. -------------------------------------------------------------------------------------------------------------
  120. MAKE SURE BEFORE YOU DO THIS MOBILE AUTHENTICATOR IS TURNED OFF ON YOUR BOT AND THAT THERE IS NO PHONE NUMBER ADDED.
  121.  
  122. Method 3: 2fa
  123.  
  124. 1. Download NODE.JS at https://nodejs.org/en/
  125. 2. open Command prompt > run > command prompt
  126. 3. type in npm in command prompt
  127. 4. then type this single commands :
  128. npm install steamcommunity
  129. npm install fs
  130. npm install readline
  131. --------------------------------------------------------------
  132. Steam section :
  133. 1. Go to your bots steam account
  134. 2. Go to account details
  135. 3. add phone number
  136. 4. Put your phone number and copy the code you got and paste it on your desktop in a notepad file DONT PUT IT ON STEAM YET
  137. ---------------------------------------------------------------
  138. go to the 2fa folder located in the bot folder and copy the folder path
  139. in my example : C:\Users\MICHAEL\Desktop\2fa
  140.  
  141. type in command prompt cd C:\Users\MICHAEL\Desktop\2fa ( your path ofcourse )
  142. type in command prompt node 2fa.js
  143. It will ask for username : put your bots login
  144. password : bots password
  145. then you will get a mail on your bots email account. get the code and fill it in.
  146. Then it will ask for an activation code , get the code from your notepad and put it at the activation code.
  147. press enter a few times.
  148. mark the whole cmd
  149. and copy it and paste it in a notepad.
  150. Get the identity_secret and shared_secret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement