Advertisement
iTA360

Steam TCRelink HTML Code and Data

Jun 17th, 2023 (edited)
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.16 KB | Gaming | 0 0
  1. <form action="" method="">
  2. <a href="https://steamcommunity.com/id/davidespagocci/gamecards/" id=link>Cards Number</a>
  3. <textarea rows=3 columns=8 name=val id=val></textarea>
  4. <button type=button onclick="useValue()">Use it</button>
  5. </form>
  6. <script>
  7. function useValue() {
  8. document.getElementById('link').href +=
  9. encodeURIComponent(document.getElementById('val').value);
  10. }
  11. </script>
  12.  
  13. <form action="" method="">
  14. <a href="https://steamcommunity.com/market/search?appid=753&q=Trading+Card+NOT+foil&category_753_Game%5B%5D=tag_app_" id=link2>Cards Value</a>
  15. <textarea rows=3 columns=8 name=val id=val2></textarea>
  16. <button type=button onclick="useValue()">Use it2</button>
  17. </form>
  18. <script>
  19. function useValue() {
  20. document.getElementById('link2').href +=
  21. encodeURIComponent(document.getElementById('val2').value);
  22. }
  23. </script>
  24.  
  25. <form action="" method="">
  26. <a href="https://steamcommunity.com/market/search?appid=753&q=pack&category_753_Game%5B%5D=tag_app_" id=link3>Booster Pack Price</a>
  27. <textarea rows=3 columns=8 name=val id=val3></textarea>
  28. <button type=button onclick="useValue()">Use it3</button>
  29. </form>
  30. <script>
  31. function useValue() {
  32. document.getElementById('link3').href +=
  33. encodeURIComponent(document.getElementById('val3').value);
  34. }
  35. </script>
  36.  
  37. <form action="" method="">
  38. <a href="https://steamcommunity.com//tradingcards/boostercreator/#" id=link4>Create BP</a>
  39. <textarea rows=3 columns=8 name=val id=val4></textarea>
  40. <button type=button onclick="useValue()">Use it4</button>
  41. </form>
  42. <script>
  43. function useValue() {
  44. document.getElementById('link4').href +=
  45. encodeURIComponent(document.getElementById('val4').value);
  46. }
  47. </script>
  48.  
  49. <!DOCTYPE html>
  50. <html>
  51.  
  52. <head>
  53. <script src=
  54. "https://cdnjs.cloudflare.com/ajax/libs/mathjs/10.6.4/math.js"
  55. integrity=
  56. "sha512-BbVEDjbqdN3Eow8+empLMrJlxXRj5nEitiCAK5A1pUr66+jLVejo3PmjIaucRnjlB0P9R3rBUs3g5jXc8ti+fQ=="
  57. crossorigin="anonymous"
  58. referrerpolicy="no-referrer"></script>
  59. <script src=
  60. "https://cdnjs.cloudflare.com/ajax/libs/mathjs/10.6.4/math.min.js"
  61. integrity=
  62. "sha512-iphNRh6dPbeuPGIrQbCdbBF/qcqadKWLa35YPVfMZMHBSI6PLJh1om2xCTWhpVpmUyb4IvVS9iYnnYMkleVXLA=="
  63. crossorigin="anonymous"
  64. referrerpolicy="no-referrer"></script>
  65. <!-- for styling -->
  66. <style>
  67. table {
  68. border: 1px solid black;
  69. margin-left: auto;
  70. margin-right: auto;
  71. }
  72.  
  73. input[type="button"] {
  74. width: 100%;
  75. padding: 20px 40px;
  76. background-color: green;
  77. color: white;
  78. font-size: 24px;
  79. font-weight: bold;
  80. border: none;
  81. border-radius: 5px;
  82. }
  83.  
  84. input[type="text"] {
  85. padding: 20px 30px;
  86. font-size: 24px;
  87. font-weight: bold;
  88. border: none;
  89. border-radius: 5px;
  90. border: 2px solid black;
  91. }
  92. </style>
  93. </head>
  94. <!-- create table -->
  95.  
  96. <body>
  97. <table id="calcu">
  98. <tr>
  99. <td colspan="3"><input type="text" id="result"></td>
  100. <!-- clr() function will call clr to clear all value -->
  101. <td><input type="button" value="c" onclick="clr()" /> </td>
  102. </tr>
  103. <tr>
  104. <!-- create button and assign value to each button -->
  105. <!-- dis("1") will call function dis to display value -->
  106. <td><input type="button" value="1" onclick="dis('1')"
  107. onkeydown="myFunction(event)"> </td>
  108. <td><input type="button" value="2" onclick="dis('2')"
  109. onkeydown="myFunction(event)"> </td>
  110. <td><input type="button" value="3" onclick="dis('3')"
  111. onkeydown="myFunction(event)"> </td>
  112. <td><input type="button" value="/" onclick="dis('/')"
  113. onkeydown="myFunction(event)"> </td>
  114. </tr>
  115. <tr>
  116. <td><input type="button" value="4" onclick="dis('4')"
  117. onkeydown="myFunction(event)"> </td>
  118. <td><input type="button" value="5" onclick="dis('5')"
  119. onkeydown="myFunction(event)"> </td>
  120. <td><input type="button" value="6" onclick="dis('6')"
  121. onkeydown="myFunction(event)"> </td>
  122. <td><input type="button" value="*" onclick="dis('*')"
  123. onkeydown="myFunction(event)"> </td>
  124. </tr>
  125. <tr>
  126. <td><input type="button" value="7" onclick="dis('7')"
  127. onkeydown="myFunction(event)"> </td>
  128. <td><input type="button" value="8" onclick="dis('8')"
  129. onkeydown="myFunction(event)"> </td>
  130. <td><input type="button" value="9" onclick="dis('9')"
  131. onkeydown="myFunction(event)"> </td>
  132. <td><input type="button" value="-" onclick="dis('-')"
  133. onkeydown="myFunction(event)"> </td>
  134. </tr>
  135. <tr>
  136. <td><input type="button" value="0" onclick="dis('0')"
  137. onkeydown="myFunction(event)"> </td>
  138. <td><input type="button" value="." onclick="dis('.')"
  139. onkeydown="myFunction(event)"> </td>
  140. <!-- solve function call function solve to evaluate value -->
  141. <td><input type="button" value="=" onclick="solve()"> </td>
  142.  
  143. <td><input type="button" value="+" onclick="dis('+')"
  144. onkeydown="myFunction(event)"> </td>
  145. </tr>
  146. </table>
  147.  
  148. <script>
  149. // Function that display value
  150. function dis(val) {
  151. document.getElementById("result").value += val
  152. }
  153.  
  154. function myFunction(event) {
  155. if (event.key == '0' || event.key == '1'
  156. || event.key == '2' || event.key == '3'
  157. || event.key == '4' || event.key == '5'
  158. || event.key == '6' || event.key == '7'
  159. || event.key == '8' || event.key == '9'
  160. || event.key == '+' || event.key == '-'
  161. || event.key == '*' || event.key == '/')
  162. document.getElementById("result").value += event.key;
  163. }
  164.  
  165. var cal = document.getElementById("calcu");
  166. cal.onkeyup = function (event) {
  167. if (event.keyCode === 13) {
  168. console.log("Enter");
  169. let x = document.getElementById("result").value
  170. console.log(x);
  171. solve();
  172. }
  173. }
  174.  
  175. // Function that evaluates the digit and return result
  176. function solve() {
  177. let x = document.getElementById("result").value
  178. let y = math.evaluate(x)
  179. document.getElementById("result").value = y
  180. }
  181.  
  182. // Function that clear the display
  183. function clr() {
  184. document.getElementById("result").value = ""
  185. }
  186. </script>
  187. </body>
  188.  
  189. </html>
  190.  
  191. 80 0.35 4.375 0.004375
  192. 80 0.36 4.500 0.004500
  193. 80 0.37 4.625 0.004625
  194. 80 0.38 4.750 0.004750
  195. 80 0.39 4.875 0.004875
  196. 80 0.40 5.000 0.005000
  197. 80 0.41 5.125 0.005125
  198. 80 0.42 5.250 0.005250
  199. 80 0.43 5.375 0.005375
  200. 80 0.44 5.500 0.005500
  201. 80 0.45 5.625 0.005625
  202. 80 0.46 5.750 0.005750
  203. 80 0.48 6.000 0.006000
  204. 80 0.49 6.125 0.006125
  205. 80 0.50 6.250 0.006250
  206. 80 0.51 6.375 0.006375
  207. 80 0.52 6.500 0.006500
  208. 80 0.53 6.625 0.006625
  209. 80 0.54 6.750 0.006750
  210. 80 0.55 6.875 0.006875
  211. 80 0.56 7.000 0.007000
  212. 80 0.57 7.125 0.007125
  213. 80 0.58 7.250 0.007250
  214. 80 0.59 7.375 0.007375
  215. 80 0.60 7.500 0.007500
  216.  
  217. 60 0.30 5.00 0.005
  218. 60 0.31 5.17 0.0052
  219. 60 0.32 5.33 0.0053
  220. 60 0.33 5.50 0.0055
  221. 60 0.34 5.67 0.0057
  222. 60 0.35 5.83 0.0058
  223. 60 0.36 6.00 0.006
  224. 60 0.37 6.17 0.0062
  225. 60 0.38 6.33 0.0063
  226. 60 0.39 6.50 0.0065
  227. 60 0.40 6.67 0.0067
  228. 60 0.41 6.83 0.0068
  229. 60 0.42 7.00 0.007
  230.  
  231. DROP GEMS BPBUY BPSELL CB CS
  232. 5 400 2.00 2.26 0.67 0.76
  233. 6 429 2.15 2.43 0.72 0.82
  234. 7 462 2.31 2.61 0.77 0.87
  235. 8 500 2.50 2.83 0.83 0.94
  236. 9 545 2.73 3.09 0.91 1.03
  237. 10 600 3.00 3.39 1.00 1.13
  238. 11 667 3.33 3.76 1.11 1.25
  239. 12 750 3.75 4.24 1.25 1.41
  240. 13 857 4.29 4.86 1.43 1.61
  241. 14 1000 5.00 5.65 1.67 1.89
  242. 15 1200 6.00 6.78 2.00 2.26
  243.  
  244. 5 400 2.00 2.26 0.67 0.76
  245. 6 429 2.15 2.43 0.72 0.82
  246. 7 462 2.31 2.61 0.77 0.87
  247. 8 500 2.50 2.83 0.83 0.94
  248. 9 545 2.73 3.09 0.91 1.03
  249. 10 600 3.00 3.39 1.00 1.13
  250. 11 667 3.33 3.76 1.11 1.25
  251. 12 750 3.75 4.24 1.25 1.41
  252. 13 857 4.29 4.86 1.43 1.61
  253. 14 1000 6.00 6.78 2.00 2.26
  254. 15 1200 7.20 8.14 2.40 2.71
  255.  
  256. 5 400 2.80 3.17 0.93 1.05
  257. 6 429 3.03 3.43 1.01 1.14
  258. 7 462 3.23 3.65 1.08 1.21
  259. 8 500 3.50 3.95 1.17 1.31
  260. 9 545 3.81 4.30 1.27 1.42
  261. 10 600 4.20 4.74 1.40 1.58
  262. 11 667 4.67 5.28 1.56 1.76
  263. 12 750 5.25 5.93 1.75 1.98
  264. 13 857 5.99 6.77 1.99 2.25
  265. 14 1000 7.00 7.91 2.33 2.63
  266. 15 1200 8.40 9.49 2.80 3.16
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement