steamcommunity.com
Open in
urlscan Pro
104.96.144.90
Public Scan
URL:
https://steamcommunity.com/sharedfiles/filedetails/?id=2855616149
Submission: On September 11 via manual from US — Scanned from NL
Submission: On September 11 via manual from US — Scanned from NL
Form analysis
2 forms found in the DOM<form onsubmit="return false;"> Link: <input type="input" id="SharePopupInput" value="" readonly="readonly">
</form>
Name: KVTagsUpdateFormSingle — POST https://steamcommunity.com/workshop/updatekvtags/
<form class="smallForm" method="POST" name="KVTagsUpdateFormSingle" id="PromptModalForm" action="https://steamcommunity.com/workshop/updatekvtags/">
<input type="hidden" name="id" value="2855616149">
<input type="hidden" name="sessionid" value="365156264b12e943a4a40d9e">
<div class="box">
<div class="itemBulletArrow"></div>
<div class="title" id="PromptTitle"></div>
<p class="description" id="PromptDescription"></p>
<input type="text" class="titleField" name="value" id="PromptValue">
</div>
<a class="btn_green_white_innerfade btn_medium button" href="javascript:UpdateKVTagsSingle();"><span>Bijwerken</span></a>
<div style="clear:both"></div>
</form>
Text Content
Inloggen Winkel Startpagina Ontdekkingswachtrij Verlanglijst Puntenwinkel Nieuws Statistieken Community Startpagina Discussies Workshop Markt Uitzendingen Over Ondersteuning Taal wijzigen Download de mobiele Steam-app Desktopwebsite weergeven © Valve Corporation. Alle rechten voorbehouden. Alle handelsmerken zijn eigendom van hun respectieve eigenaren in de Verenigde Staten en andere landen. Privacybeleid | Juridische informatie | Steam Subscriber Agreement | Terugbetalingen WINKEL Startpagina Ontdekkingswachtrij Verlanglijst Puntenwinkel Nieuws Statistieken COMMUNITY Startpagina Discussies Workshop Markt Uitzendingen Over ONDERSTEUNING Steam installeren inloggen | taal 简体中文 (Chinees, vereenvoudigd) 繁體中文 (Chinees, traditioneel) 日本語 (Japans) 한국어 (Koreaans) ไทย (Thai) Български (Bulgaars) Čeština (Tsjechisch) Dansk (Deens) Deutsch (Duits) English (Engels) Español-España (Spaans - Spanje) Español - Latinoamérica (Spaans - Latijns-Amerika) Ελληνικά (Grieks) Français (Frans) Italiano (Italiaans) Bahasa Indonesia (Indonesisch) Magyar (Hongaars) Norsk (Noors) Polski (Pools) Português (Portugees - Portugal) Português - Brasil (Braziliaans-Portugees) Română (Roemeens) Русский (Russisch) Suomi (Fins) Svenska (Zweeds) Türkçe (Turks) Tiếng Việt (Vietnamees) Українська (Oekraïens) Een vertaalprobleem melden Winkelpagina Grey Hack Alles Discussies Screenshots Beeldmateriaal Uitzendingen Video's Workshop Nieuws Gidsen Recensies Alles Discussies Screenshots Beeldmateriaal Uitzendingen Video's Workshop Nieuws Gidsen Recensies GREY HACK Winkelpagina Grey Hack > Gidsen > Gidsen van Adrian M. 2L-236 Dit item is van de community verwijderd omdat het de richtlijnen voor de Steam Community en communityinhoud schendt. Het is alleen zichtbaar voor jou. Als je denkt dat je item ten onrechte is verwijderd, neem je contact op met Steam Support. Dit voorwerp is incompatibel met Grey Hack. Zie de instructiepagina waarom dit voorwerp mogelijk niet werkt met Grey Hack. Onvoldoende beoordelingen Creating your own Crypto Coin Door Adrian M. 2L-236 This guide will teach you the basic's of creating a safe crypto currency in Grey Hack. This guide will cover how to create the coin , sample scripts to set up a miner and a SubWallet for your currency. This guide is made by Xen. If you would like to say thank you , mine , trade and use XTC ! Prijs Toevoegen aan favorieten Toegevoegd aan favorieten Verwijderen uit favorieten Delen Dit voorwerp is toegevoegd aan je favorieten. Gemaakt door Adrian M. 2L-236 Offline Categorie: Co-op, Gameplaybasics, Multiplayer, Handel en ruilen, Rondleidingen Languages: Engels Geplaatst op Bijgewerkt op 28 aug 2022 om 18:07 29 aug 2022 om 10:04 396 unieke bezoekers 20 huidige favorieten Inhoudsopgave Overzicht Creating the Coin. Configuring the coin. Creating a SubWallet Script Creating a Mining Script [Bonus] Coin Creator Info Script [BONUS] Publishing your coin (W.I.P) Reacties Creating the Coin. First you must register the coin on one of the websites offering such services. Open Browser.exe and search Coin in the search engine. Open one of the websites like the ones below Once on the website navigate to Services and register the coin with a coin name + user and pass for configuring the coin. It should look like below. It will cost 150$ to create the coin. Once the coin is created all the details will be stored in Settings.exe > Accounts if you need them for later reference. (Badly highlighted in yellow below) To configure the coin look at the next section: Configuring your coin Configuring the coin. Crypto can only be configured via scripting , below are some basic scripts to set up the coin. Download blockchain.so and place it in your /lib folder for the code to work. //Include the blockchain.so lib bc = include_lib("/lib/blockchain.so") // Get coin and store it in the coin variable. Use the details from the previous step. //Usage e.g: coin = bc.get_coin("BTC","myusername","mypassword") coin = bc.get_coin("<CoinName>","<CoinUser>",",<CoinPass>") //Will print "coin" if the coin is gotten successfully , else it will print a string with the error , this is to //make sure the bc.get_coin details are correct print(coin) //Set the reward given at the end of each mine cycle (in this case 1 coin) coin.set_reward(1) //Assign the hours (game time) that each mining cycle lasts. When a cycle ends, it is decided who //gets the reward (in this case 1hr) coin.set_cycle_mining(1) //Assign the web address where people can download your Wallet and Mining Software coin.set_address("link to your website with wallet and miner") Creating a SubWallet Script Now you need a place for you and your users to store coins. Download the wallet script from the shop and register a main Wallet. Anyone wishing to use the coin will need to provide the auto generated pin from the main wallet to create a sub wallet. While its possible to log into the main wallet and grab the pin via a script function but I do not recommend asking for the mail wallet user and pass and instead my scripts ask for the pin from the wallet script provided by the developer. Your scripts should never call home in any way as it is seen as a security risk for the user //Include the blockchain.so lib bc = include_lib("/lib/blockchain.so") // Get coin and store it in the coin variable. Use the details from the previous step. //Usage e.g: coin = bc.get_coin("BTC","myusername","mypassword") coin = bc.get_coin("<CoinName>","<CoinUser>",",<CoinPass>") //Will print "coin" if the coin is gotten successfully , else it will print a string with the error , this is to //make sure the bc.get_coin details are correct print(coin) print("1.Create a new subwallet ") print("2.Login ") option = user_input("Option: ") // Option 1 will create a subwallet using the pin from the wallet script if option == 1 then //Main wallet username to link the subwallet to: walletID = user_input("Enter your main wallet username: ") //Autogenerated Pin from the wallet script walletpin = user_input("Enter the autogenerated pin from your wallet: ") //Username for SubWallet (used for directing the miner) swalletuser = user_input("Enter the username for your BTC Wallet ") //Subwallet pass used for option 2 in this case to verify wallet ownership swalletpass = user_input("Enter the password for your BTC Wallet: ") print("Creating subwallet with:") print("Main wallet: " + walletID + " User: " + swalletuser + " Pass: " + swalletpass + " . ") x = coin.create_subwallet(walletID,walletpin,swalletuser,swalletpass) print(x) //Option 2 will allow the user tocheck the balance of their subwallet and get some other useful info else if option == 2 then subwallet = coin.get_subwallet(user_input("Wallet User:")) print(subwallet) pass = subwallet.check_password(user_input("Wallet Pass:")) if pass == true then print("---XTC Wallet---") print("Welcome: " + subwallet.get_user) print("Your XTC Balance is: " + subwallet.get_balance) print("(Main Wallet)This wallet is linked to: " + subwallet.wallet_username) print("Your last transaction was: " + subwallet.last_transaction) else if pass == false then print("Wrong Pass") exit end if end if Creating a Mining Script This script will be used by you and other user to mine the coin into their SubWallets and therefore into the main wallet. Then you can trade the coins using the wallet script or Stocks.exe //Include the blockchain.so lib bc = include_lib("/lib/blockchain.so") // Get coin and store it in the coin variable. Use the details from the previous step. //Usage e.g: coin = bc.get_coin("BTC","myusername","mypassword") coin = bc.get_coin("<CoinName>","<CoinUser>",",<CoinPass>") print(coin) //Get subwallet to mine to (subwallet username setup in the last step) subwallet = coin.get_subwallet(user_input("Wallet User:")) //Prints subwallet if the wallet was gotten correctly , if there is an error prints the error string print(subwallet) print("Starting Mining...") //Mine till process is stopped with ctrl-c while 1==1 //Start Mining subwallet.mining //Print the balance and success message when the user running the script mines a chunk print("Chunk mined") print("Balance: " + subwallet.get_balance) end while Please trade and mine XTC if you wish to say thanks for the guide [Bonus] Coin Creator Info Script This script should not be published and can be used by coin creators to track coin data. //Include the blockchain.so lib bc = include_lib("/lib/blockchain.so") // Get coin and store it in the coin variable. Use the details from the previous step. //Usage e.g: coin = bc.get_coin("BTC","myusername","mypassword") coin = bc.get_coin("<CoinName>","<CoinUser>",",<CoinPass>") //Will print "coin" if the coin is gotten successfully , else it will print a string with the error , this is to //make sure the bc.get_coin details are correct print(coin) print("Coin Stats") print("Mined so Far: " + coin.get_mined_coins) print("Subwallets: ") subwallets = coin.get_subwallets //Show all registered subwallets and their balance x = 0 for wallet in subwallets print(x+1+". " + wallet.get_user + " // " + str(wallet.get_balance)) x = x + 1 end for [BONUS] Publishing your coin (W.I.P) While i finish up creating a guide and sample HTML for a frontend for your coin , to publish your coin copy a shop websites public/htdocs/ by hacking into it , place the Miner and Wallet in the /public/htdocs/downloads folder and grab a website.html and edit it to your needs. Please trade and mine XTC if you wish to say thanks for the guide 7 opmerkingen < 11 > Aradar 6 sep om 10:31 Couldn't get any of this to work 😞 Vader's Apprentice 2 jul om 6:10 Thanks for these scripts. I really needed these. I had to make two minor changes to the sub-wallet script though: `option == 1` had to be changed to `option == "1"` `option == 2` had to be changed to `option == "2"` Otherwise they worked perfectly. Horizontal Rat 29 mei om 19:20 A few typos in these but they seem to still work Adrian M. 2L-236 [auteur] 29 jul 2023 om 19:28 WuRGG: I havent played the game in a while , but ill look into it. ★ PiRaTe FuNGuS 13 mei 2023 om 16:30 I tried this, but it didn't work. I think the code has been updated . spikethedog3 31 jan 2023 om 20:45 don't know if you got my msg.... i a up with pneumonia and a warm blanket VERY grateful for the string I started @ 3am but as you know once you start string you cant stop I pot a picture of the result on my page I should go to bed soon but thanx again Spikey Castor06 29 okt 2022 om 2:23 TY for your guide :) < 11 > Op je Steam-activiteitenfeed delen Link: Je moet inloggen of registreren om dit te kunnen doen. Inloggen Registreren Annuleren Bijwerken © Valve Corporation. Alle rechten voorbehouden. Alle handelsmerken zijn eigendom van hun respectievelijke eigenaren in de Verenigde Staten en andere landen. Een deel van de geospatiale informatie op deze website is afkomstig van geonames.org. Privacybeleid | Juridische informatie | Steam Subscriber Agreement | Cookies Mobiele website weergeven We gebruiken optionele cookies om je gepersonaliseerde inhoud te bezorgen en om websiteverkeer te analyseren. Ga je daarmee akkoord? We maken slechts van enkele cookies gebruik. Je kunt ze wanneer je maar wilt bekijken en beheren op onze pagina met cookie-instellingen. Als je op Alles accepteren klikt, dan geef je toestemming voor het gebruik van cookies op de websites van Steam. Meer informatie over cookies vind je in ons privacybeleid (Privacy Policy). Alles accepteren Alles weigeren