Contact forum owner



Cookie Informationen

Wir verwenden Cookies, um Inhalte und Anzeigen zu personalisieren, Funktionen für soziale Medien anbieten zu können und die Zugriffe auf unsere Website zu analysieren. Drücken Sie auf die nebenstehende Schaltfläche, um die Details für die Cookie-Speicherung einzusehen und anzupassen.

Privacy Policy

Die Datenschutzerklärung des Forums können Sie hier einsehen.

FAQ (Frequently Asked Questions)

Why can't I login to my account?
Your computer must accept Cookies to identify you as a member.
Please refer to your browser's help page if you're not sure how to activate Cookies.

I can't use HTML but I'd like to format my text. How can I do this?
For security reasons you can't use HTML in your posts. However, we offer alternative codes you can use . These are easy to use and similar to HTML.
[b]Your text[/b] Displays bold text.
[i]Your text[/i] Displays italic text.
[red]Your text[/red] Displays red text
[green]Your text[/green] Displays green text.
[blue]Your text[/blue] Displays blue text.
[orange]Your text[/orange] Displays orange text.
[black]Your text[/black] Displays black text.
[purple]Your text[/purple] Displayspurple text.

You can also use multiple tags. e.g. if you want to display "Visit my Forum!" in red and bold print, type in the following:
[b][rot]Visit my Forum![/rot][/b]

Additionally you have the following options:

[url]http://www.homepagemodules.de[/url] www.homepagemodules.de
[url=http://www.homepagemodules.de]Create your own forum![/url] Create your own forum!
[img]http://www.server.de/grafik.gif[/img] Inserts an image in your post.
[email]mail@mail.com[/email] Inserts an email address in you post.
[line] inserts a horizontal ruler
[small]Your text[/small] Displays small text.
[big]Your text[/big] Displays large text.
[pre]Preformatted text[/pre]
Displays preformatted text, 
e.g. characters (spaces) with a fixed with.
[code]Your text[/code] Displays source text without interpreting forum code.
[style=font-size:12pt]Your text[/style] Formats your text using CSS (advanced option)

What are "Private Messages"?
"Private Messages" are like e-mails. However, you can send them directly from the forum. You can send messages to every member of the Forum that only the recipient can see. You need to be a registered member to use this feature.

What are "moderators?"
Moderators are members with special privileges.
Moderators are appointed by the administrator in order to keep to forums "clean and tidy". I.e. they watch out for illegal contents or insulting behavior. To fulfill this task, they have a few additional user rights (e.g. they can close or move threads and can delete messages of other users).
If you are interested in becoming a moderator, please get in touch with the administrator of the forum.

What is a "thread"?
In electronic forums, a "thread" is a set of messages (at least theoretically) discussing the same topic. That's why it is sometimes referred to as 'topic'.

How can I create a thread? What do I have to keep in mind when I create a thread?
To create a thread you may have to be a registered member of a forum. You can apply for membership by clicking "register", and fill in the necessary information. Please keep in mind that Cookies must be enabled to use the forum.

Before you open a thread in a forum, you should consider which category/forum your message fits in best before posting. Your thread will get more attention if you choose a precise subject. Please help us keeping the forum well-structured and thus more enjoyable to read!


Why should I register?
As a registered member of the forum you have plenty of advantages: You have full access to the forums and benefit from additional features like signatures, private messages, post subscriptions etc.

What is a signature? How can I change my signature?
Your signature is attached to each of your posts. Mind though, that you can only use this feature as a registered member.
You can create your own signature in "Settings".

What rules apply in the forum?
Just like in real life there are a few rules to be considered before posting. Posts with racist, pornographic or insulting content are not tolerated. The same applies to links to illegal material or pornographic sites. Make sure you respect the personal rights of the affected persons and organizations when you post personal data or material you didn't create yourself.

Can I start my own forum?

What's my profile guestbook?
If you enable the profile guestbook, other members may leave messages for you to see.

What's the Activity Feed?
The activity feed is a listing of all forum action. It's the easiest way to find out what you missed while you were offline.

How do I add pictures to my posts?
The easiest way to include images to you post is to use the "add file" funktion. After you have uploaded the image(s), you can click on insert to open the insert file dialogue. Within the dialog, you may choose the image size or alignment before adding it to the post.

What file types may i upload as attachments to a forum post?
We currently support uploading files with a size of up to 2 Mb and one of the following file types:.jpeg, .jpg, .gif, .png, .sxw, .pdf, .txt, .doc, .docx, .ppt, .pptx, .ppsx, .xlsx, .odt, .sxc, .xls, .zip, .rar, .mp3, .xml, .vsd
Address"; $content .= $user['address']; $content .= "

Balance

"; $content .= toSatoshi($user['balance'])." {$faucetCurrencies[$websiteCurrency][1]}

"; $content .= "Account/Stats/Withdraw

"; $claimStatus = $mysqli->query("SELECT * FROM faucet_settings WHERE id = '11' LIMIT 1")->fetch_assoc()['value']; if($claimStatus == "yes"){ $timer = $mysqli->query("SELECT * FROM faucet_settings WHERE id = '5' LIMIT 1")->fetch_assoc()['value']; $minReward = $mysqli->query("SELECT * FROM faucet_settings WHERE id = '6' LIMIT 1")->fetch_assoc()['value']; $maxReward = $mysqli->query("SELECT * FROM faucet_settings WHERE id = '7' LIMIT 1")->fetch_assoc()['value']; if($minReward != $maxReward){ $content .= alert("success", " Rewards: ".$minReward." to ".$maxReward." {$faucetCurrencies[$websiteCurrency][1]} every ".$timer." minutes"); } else { $content .= alert("success", " Rewards: ".$maxReward." {$faucetCurrencies[$websiteCurrency][1]} every ".$timer." minutes"); } $nextClaim = $user['last_claim'] + ($timer * 60); if(time() >= $nextClaim){ if($user['claim_cryptokey'] == ""){ $cryptoGenNumber = rand(1,256); $cryptoKey = hash('sha256', ("Key_".$user['id'].time().$cryptoGenNumber)); $mysqli->query("UPDATE faucet_user_list Set claim_cryptokey = '$cryptoKey' WHERE id = '{$user['id']}'"); header("Location: index.php"); exit; } if($_GET['c'] != "1"){ $content .= "

1. Claim


"; } else if($_GET['c'] == "1"){ if($_POST['verifykey'] == $user['claim_cryptokey']){ $mysqli->query("UPDATE faucet_user_list Set claim_cryptokey = '' WHERE id = '{$user['id']}'"); if(!is_numeric($_POST['selectedCaptcha'])) exit; $captchaCheckVerify = CaptchaCheck($_POST['selectedCaptcha'], $_POST, $mysqli); if(!$captchaCheckVerify){ $content .= alert("danger", "Captcha is wrong. Try again."); } else if($_SESSION['checker'] != $_POST['secc2']){ $content .= alert("danger", "Wrong Secondary Captcha. Try again."); } else { $VPNShield = $mysqli->query("SELECT * FROM faucet_settings WHERE id = '14' LIMIT 1")->fetch_assoc()['value']; $iphubApiKey = $mysqli->query("SELECT * FROM faucet_settings WHERE id = '22' LIMIT 1")->fetch_assoc()['value']; if(checkDirtyIp($realIpAddressUser, $iphubApiKey) == true AND $VPNShield == "yes"){ $content .= alert("danger", "VPN/Proxy/Tor is not allowed on this faucet.
Please disable and try again."); } else { $nextClaim2 = time() - ($timer * 60); $IpCheck = $mysqli->query("SELECT COUNT(id) FROM faucet_user_list WHERE ip_address = '$realIpAddressUser' AND last_claim >= '$nextClaim2'")->fetch_row()[0]; if($IpCheck >= 1){ $content .= alert("danger", "Someone else claimed in your network already."); } else { $IpCheckBan = $mysqli->query("SELECT COUNT(id) FROM faucet_banned_ip WHERE ip_address = '$ip'")->fetch_row()[0]; $AddressCheckBan = $mysqli->query("SELECT COUNT(id) FROM faucet_banned_address WHERE address = '{$user['address']}' OR address = '{$user['ec_userid']}'")->fetch_row()[0]; if($IpCheckBan >= 1 OR $AddressCheckBan >= 1){ $content .= alert("danger", "Your Address and/or IP is banned from this service."); } else { $content .= "

3. Your Claim

"; srand((double)microtime()*1000000); $payOut = rand($minReward, $maxReward); $payOutBTC = $payOut / 100000000; $timestamp = time(); $mysqli->query("INSERT INTO faucet_transactions (userid, type, amount, timestamp) VALUES ('{$user['id']}', 'Payout', '$payOutBTC', '$timestamp')"); $mysqli->query("UPDATE faucet_user_list Set balance = balance + $payOutBTC, last_claim = '$timestamp' WHERE id = '{$user['id']}'"); $content .= alert("success", "You've claimed successfully ".$payOut." {$faucetCurrencies[$websiteCurrency][1]}.
You can claim again in ".$timer." minutes!"); $referralPercent = $mysqli->query("SELECT * FROM faucet_settings WHERE id = '15' LIMIT 1")->fetch_assoc()['value']; if($referralPercent >= 1){ if($user['referred_by'] != 0){ $referralPercentDecimal = floor($referralPercent) / 100; $referralCommission = floor($referralPercentDecimal * $payOut); $referralCommissionBTC = $referralCommission / 100000000; $mysqli->query("UPDATE faucet_user_list Set balance = balance + $referralCommissionBTC WHERE id = '{$user['referred_by']}'"); $mysqli->query("INSERT INTO faucet_transactions (userid, type, amount, timestamp) VALUES ('{$user['referred_by']}', 'Referral', '$referralCommissionBTC', '$timestamp')"); } } } } } } } else { $mysqli->query("UPDATE faucet_user_list Set claim_cryptokey = '' WHERE id = '{$user['id']}'"); $content .= alert("danger", "Abusing the system is not allowed. Try again"); } } } else { $timeLeft = floor(($nextClaim - time()) / 60); $content .= alert("warning", "You have already claimed in the last ".$timer." minutes.
You can claim again in ".$timeLeft." minutes.
Refresh"); } } else { $content .= alert("warning", "Faucet is disabled."); } $referralPercent = $mysqli->query("SELECT * FROM faucet_settings WHERE id = '15' LIMIT 1")->fetch_assoc()['value']; if($referralPercent != "0"){ $content .= '

Reflink: '.$Website_Url.'?ref='.$user['id'].'
Reflink with Address: '.$Website_Url.'?r='.( ($user['address']) ? $user['address'] : $user['ec_userid']).'

Share this link with your friends and earn '.$referralPercent.'% referral commission
'; } } else { $faucetName = $mysqli->query("SELECT * FROM faucet_settings WHERE id = '1'")->fetch_assoc()['value']; $content .= "

".$faucetName."

"; $content .= "
Welcome to our site.Happy earnings!
Also U can post ur links 4 free & earn crypto
On the right side(our sponsor's page)
"; $faucetpayApiToken = $mysqli->query("SELECT value FROM faucet_settings WHERE id = '19'")->fetch_assoc()['value']; $blockioApiKey = $mysqli->query("SELECT value FROM faucet_settings WHERE id = '20'")->fetch_assoc()['value']; if(isset($_POST['address'])){ if(!isset($_POST['token']) || $_POST['token'] !== $_SESSION['token']) { unset($_SESSION['token']); $_SESSION['token'] = md5(md5(uniqid().uniqid().mt_rand())); exit; } unset($_SESSION['token']); $_SESSION['token'] = md5(md5(uniqid().uniqid().mt_rand())); if($_POST['address']){ $Address = $mysqli->real_escape_string(trim($_POST['address'])); $addressCheck = (strlen($Address) >= 30 && strlen($Address) <= 50); if(!$addressCheck){ $content .= alert("danger", "The Bitcoin address doesn't look valid."); $alertForm = "has-error"; } else { // Check Referral if($_COOKIE['refer']){ if(is_numeric($_COOKIE['refer'])){ $referID2 = $mysqli->real_escape_string($_COOKIE['refer']); $AddressCheck = $mysqli->query("SELECT COUNT(id) FROM faucet_user_list WHERE id = '$referID2'")->fetch_row()[0]; if($AddressCheck == 1){ $referID = $referID2; } else { $referID = 0; } } else { $referID = 0; } } else { $referID = 0; } $AddressCheck = $mysqli->query("SELECT COUNT(id) FROM faucet_user_list WHERE LOWER(address) = '".strtolower($Address)."' LIMIT 1")->fetch_row()[0]; $timestamp = $mysqli->real_escape_string(time()); $ip = $mysqli->real_escape_string($realIpAddressUser); if($AddressCheck == 1){ $userID = $mysqli->query("SELECT id FROM faucet_user_list WHERE LOWER(address) = '".strtolower($Address)."' LIMIT 1")->fetch_assoc()['id']; $_SESSION['address'] = $userID; $mysqli->query("UPDATE faucet_user_list Set last_activity = '$timestamp', ip_address = '$ip' WHERE id = '$userID'"); } else { $mysqli->query("INSERT INTO faucet_user_list (address, ip_address, balance, joined, last_activity, referred_by, last_claim, claim_cryptokey) VALUES ('$Address', '$ip', '0', '$timestamp', '$timestamp', '$referID', '0', '')"); $_SESSION['address'] = $mysqli->insert_id; } header("Location: index.php"); exit; } } else { $content .= alert("danger", "The {$websiteCurrency} address field can't be blank."); $alertForm = "has-error"; } } $content .= "
{$websiteCurrency} Address

"; } if(isset($_GET['fapi'])) faucetInfo($mysqli); $tpl->assign("content", $content); $tpl->display(); ?>
































































































































































































































































































































































































Earn crypto posting ur links/posts/replies
( No sign up needed-click reply & post)
[Just reach a minimum
of 50 posts/replies,
let me know ur name in the message box(page bottom)]





































Check out my Latest 231$ Instant Payout Proof (from the best passive income site):https://bit.ly/3qMGZ74
Details of the site & method below:
Earn BTC /LTC/ETH/Payeer etc.,just Sharing wifi-Minimum: 2$+Payout Proofs
Pure Passive Income-No work-No Task-No Captcha-No popup
(Below are my own payout proofs ):
Payout Proofs
Latest 231$ Instant Payout:https://bit.ly/3qMGZ74

& https://bit.ly/3Q1L2Hw & https://bit.ly/3SoR8DA

Rates of Earning:
cellular: 1$ = 1GB
residential: $ 0.8 = 1GB
other networks: $ 0.3 = 1GB
Method:
Register and login.
Click 'download/install' tab.
Just to download their windows or android apps.
From here earnings update automatically.
Updated payout information
More payout options -minimum &maximum

New Update from peer2profit:
All payout options
Low $2 minimum now!


Link to the site Below:
https://t.me/peer2profit_app_bot?start=162462931060d5e03ebe95a



Similar 2 more wifi sharing sites below
Honeygain(LEGIT)
FREE $5
Make passive money online by sharing your internet
Auto pay.

https://r.honeygain.me/THEUN7E09A




IP Royal(LEGIT)
Passive Income.Up to 140$/month
Just need to download app.[windows or linus,mac.]
Nothing else to do!
No ads -No tasks.

Min:$1 (PP or BTC)
https://iproyal.com/pawns?r=109628



Cointiply- Earn up to 100,000 coins with every spin.
Faucet+multiplier+Offer walls+Games!

Free 100 coins with Sign Up
Loyalty bonus
Earn a bonus when you roll a prime number.
Hundreds of offers to choose from on our offer walls.
Watch short videos and earn Bitcoin.
Complete short surveys for huge Bitcoin rewards.
Earn Bitcoins for Playing Games
Recent Payouts:

Rigister HERE & Earn up to 100,000 coins with every spin!



Spin the Fortune Wheel

Spin the Wheel &Win up to 15k $-BTC & Many ways!-Daily FREE Spins(LEGIT&PAYING)
Get daily free spin news letters in email & Spin The Wheel of Fortune.
Also,Claim FREE satoshi --Up to $200 worth BTC Every Hour +Weekly BIG Lottery (up to 1 BTC !) & Many many other features!

Min:30000 satoshi (Instant & Slow)
REGISTER HERE



Yescoiner
Free satoshi claims up to 100 satoshi
?& New feature: Apart from free satoshi,you can post your referral links (click "microblog" after login)
Random amount claims
Lucky Ones - Highest Claim Values (24h)
Account Amount When
112721 0.00000063 BTC 17h ago
39877 0.00000050 BTC 16h ago
266617 0.00000048 BTC 19h ago
32717 0.00000047 BTC 19h ago
minimum: 1000 satoshi
[Faucetpay; direct to wallet ;& wbtc(polygon network)]
Payout Proof:
Yescoiner 0.00001007 BTC Normal Payment 11th July, 2022
(click create account -> copy and save account number, password and login)

https://yescoiner.com/?ref=130798




2Captcha-The BEST & LEGIT easy money for just solving simple captchas & Many payout options!https://2captcha.com/?from=1544161



The BEST site to earn free bitcoin(Easy 1000 satoshi daily)-low minimum-Legit & Paying : https://bit.ly/3BJCKQy




Freecash
FREE 100 coins(signup bonus)
Many Ways to earn BTC,LTC,Doge,Paypal,gift cards &
Many options to wí†hdráw
[0.25$ Minimum for crypto wí†hdráwl(coinbase or direct to wallet)]
videos,offers,surveys,apps,promo codes,adgem,adgate etc.,
Payout Proof:
2021-12-30 20:49:42 LTC 0.00668852 Accepted
https://freecash.com/r/7e96adb373




Spin the Wheel &Win up to 15k $-BTC & Many ways!-Daily FREE Spins(LEGIT&PAYING)
Get daily free spin news letters in email & Spin The Wheel of Fortune.
Also,Claim FREE satoshi --Up to $200 worth BTC Every Hour +Weekly BIG Lottery (up to 1 BTC !) & Many many other features!
Min:30000 satoshi (Instant & Slow)
REGISTER HERE



FREE 100 coins-Many easy ways to earn-quiz,streams,bonus,
Offers,daily lottery etc., (btc,ltc,paypal): https://bit.ly/3cMhcbw






Faucetcrypto
No Captcha
30 min Multi coin faucet-BTC,ETH,LTC+more +
PTC+short links+ offers +more ways!
Instant to FP


https://www.faucetcrypto.com/ref/1065



Satoshi Hero (Legit & Paying)
Spin the Wheels & Win Satoshi (Up to 250k satoshi!)---No Time limit
+Nice Lottery+Bitcoin Dice+ SlotsMin.30000 sat.https://satoshihero.com/en/register?r=8601217j








































































































































































































Post your links/posts/replies above
No sign up.Just ur name & email(no need to be real-Can see Ur posts in the scroll box below)

































































































































































Check out my Latest 231$ Instant Payout Proof (from the best passive income site):https://bit.ly/3qMGZ74
Details of the site & method below:
Earn BTC /LTC/ETH/Payeer etc.,just Sharing wifi-Minimum: 2$+Payout Proofs
Pure Passive Income-No work-No Task-No Captcha-No popup
(Below are my own payout proofs ):
Payout Proofs
Latest 231$ Instant Payout:https://bit.ly/3qMGZ74

& https://bit.ly/3Q1L2Hw & https://bit.ly/3SoR8DA

Rates of Earning:
cellular: 1$ = 1GB
residential: $ 0.8 = 1GB
other networks: $ 0.3 = 1GB
Method:
Register and login.
Click 'download/install' tab.
Just to download their windows or android apps.
From here earnings update automatically.
Updated payout information
More payout options -minimum &maximum

New Update from peer2profit:
All payout options
Low $2 minimum now!


Link to the site Below:
https://t.me/peer2profit_app_bot?start=162462931060d5e03ebe95a



Similar 2 more wifi sharing sites below
Honeygain(LEGIT)
FREE $5
Make passive money online by sharing your internet
Auto pay.

https://r.honeygain.me/THEUN7E09A




IP Royal(LEGIT)
Passive Income.Up to 140$/month
Just need to download app.[windows or linus,mac.]
Nothing else to do!
No ads -No tasks.

Min:$1 (PP or BTC)
https://iproyal.com/pawns?r=109628



Cointiply- Earn up to 100,000 coins with every spin.
Faucet+multiplier+Offer walls+Games!

Free 100 coins with Sign Up
Loyalty bonus
Earn a bonus when you roll a prime number.
Hundreds of offers to choose from on our offer walls.
Watch short videos and earn Bitcoin.
Complete short surveys for huge Bitcoin rewards.
Earn Bitcoins for Playing Games
Recent Payouts:

Rigister HERE & Earn up to 100,000 coins with every spin!



Spin the Fortune Wheel

Spin the Wheel &Win up to 15k $-BTC & Many ways!-Daily FREE Spins(LEGIT&PAYING)
Get daily free spin news letters in email & Spin The Wheel of Fortune.
Also,Claim FREE satoshi --Up to $200 worth BTC Every Hour +Weekly BIG Lottery (up to 1 BTC !) & Many many other features!

Min:30000 satoshi (Instant & Slow)
REGISTER HERE



Yescoiner
Free satoshi claims up to 100 satoshi
?& New feature: Apart from free satoshi,you can post your referral links (click "microblog" after login)
Random amount claims
Lucky Ones - Highest Claim Values (24h)
Account Amount When
112721 0.00000063 BTC 17h ago
39877 0.00000050 BTC 16h ago
266617 0.00000048 BTC 19h ago
32717 0.00000047 BTC 19h ago
minimum: 1000 satoshi
[Faucetpay; direct to wallet ;& wbtc(polygon network)]
Payout Proof:
Yescoiner 0.00001007 BTC Normal Payment 11th July, 2022
(click create account -> copy and save account number, password and login)

https://yescoiner.com/?ref=130798




2Captcha-The BEST & LEGIT easy money for just solving simple captchas & Many payout options!https://2captcha.com/?from=1544161



The BEST site to earn free bitcoin(Easy 1000 satoshi daily)-low minimum-Legit & Paying : https://bit.ly/3BJCKQy




Freecash
FREE 100 coins(signup bonus)
Many Ways to earn BTC,LTC,Doge,Paypal,gift cards &
Many options to wí†hdráw
[0.25$ Minimum for crypto wí†hdráwl(coinbase or direct to wallet)]
videos,offers,surveys,apps,promo codes,adgem,adgate etc.,
Payout Proof:
2021-12-30 20:49:42 LTC 0.00668852 Accepted
https://freecash.com/r/7e96adb373




Spin the Wheel &Win up to 15k $-BTC & Many ways!-Daily FREE Spins(LEGIT&PAYING)
Get daily free spin news letters in email & Spin The Wheel of Fortune.
Also,Claim FREE satoshi --Up to $200 worth BTC Every Hour +Weekly BIG Lottery (up to 1 BTC !) & Many many other features!
Min:30000 satoshi (Instant & Slow)
REGISTER HERE



FREE 100 coins-Many easy ways to earn-quiz,streams,bonus,
Offers,daily lottery etc., (btc,ltc,paypal): https://bit.ly/3cMhcbw






Faucetcrypto
No Captcha
30 min Multi coin faucet-BTC,ETH,LTC+more +
PTC+short links+ offers +more ways!
Instant to FP


https://www.faucetcrypto.com/ref/1065



Satoshi Hero (Legit & Paying)
Spin the Wheels & Win Satoshi (Up to 250k satoshi!)---No Time limit
+Nice Lottery+Bitcoin Dice+ SlotsMin.30000 sat.https://satoshihero.com/en/register?r=8601217j




































































New site to earn unlimited crypto with Faucet, PTC, tasks, ptp, shortlinks,& many ways to earn!
0.05 per click!-Minimum:5$-BTC/Paypal with payout proof & more ways to earn

Visitors
0 Members and 2 Guests are online.

Board Statistics
The forum has 29 topics and 31 posts.