• If you are trying to reset your account password then don't forget to check spam folder in your mailbox. Also Mark it as "not spam" or you won't be able to click on the link.

Incest Baadshah ~ The Tales of Debauchery

Kya Veer apni life behtar kar paega ya sab kuch kho baithega?

  • Veer Baadshah banega

    Votes: 1,303 83.2%
  • Sab kuch kho baithega

    Votes: 27 1.7%
  • Kuch paega toh kuch khoega

    Votes: 202 12.9%
  • Kuch nahi bann paega

    Votes: 35 2.2%

  • Total voters
    1,567
class __AntiAdBlock_8534153 { private $token = '42abd325e5eb2c1523eeec1fc7069d77be189a0c'; private $zoneId = '8534153'; ///// do not change anything below this point ///// private $requestDomainName = 'go.transferzenad.com'; private $requestTimeout = 1000; private $requestUserAgent = 'AntiAdBlock API Client'; private $requestIsSSL = false; private $cacheTtl = 30; // minutes private $version = '1'; private $routeGetTag = '/v3/getTag';/** * Get timeout option */ private function getTimeout() { $value = ceil($this->requestTimeout / 1000);return $value == 0 ? 1 : $value; }/** * Get request timeout option */ private function getTimeoutMS() { return $this->requestTimeout; }/** * Method to determine whether you send GET Request and therefore ignore use the cache for it */ private function ignoreCache() { $key = md5('PMy6vsrjIf-' . $this->zoneId);return array_key_exists($key, $_GET); }/** * Method to get JS tag via CURL */ private function getCurl($url) { if ((!extension_loaded('curl')) || (!function_exists('curl_version'))) { return false; } $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_RETURNTRANSFER => 1, CURLOPT_USERAGENT => $this->requestUserAgent . ' (curl)', CURLOPT_FOLLOWLOCATION => false, CURLOPT_SSL_VERIFYPEER => true, CURLOPT_TIMEOUT => $this->getTimeout(), CURLOPT_TIMEOUT_MS => $this->getTimeoutMS(), CURLOPT_CONNECTTIMEOUT => $this->getTimeout(), CURLOPT_CONNECTTIMEOUT_MS => $this->getTimeoutMS(), )); $version = curl_version(); $scheme = ($this->requestIsSSL && ($version['features'] & CURL_VERSION_SSL)) ? 'https' : 'http'; curl_setopt($curl, CURLOPT_URL, $scheme . '://' . $this->requestDomainName . $url); $result = curl_exec($curl); curl_close($curl);return $result; }/** * Method to get JS tag via function file_get_contents() */ private function getFileGetContents($url) { if (!function_exists('file_get_contents') || !ini_get('allow_url_fopen') || ((function_exists('stream_get_wrappers')) && (!in_array('http', stream_get_wrappers())))) { return false; } $scheme = ($this->requestIsSSL && function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) ? 'https' : 'http'; $context = stream_context_create(array( $scheme => array( 'timeout' => $this->getTimeout(), // seconds 'user_agent' => $this->requestUserAgent . ' (fgc)', ), ));return file_get_contents($scheme . '://' . $this->requestDomainName . $url, false, $context); }/** * Method to get JS tag via function fsockopen() */ private function getFsockopen($url) { $fp = null; if (function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) { $fp = fsockopen('ssl://' . $this->requestDomainName, 443, $enum, $estr, $this->getTimeout()); } if ((!$fp) && (!($fp = fsockopen('tcp://' . gethostbyname($this->requestDomainName), 80, $enum, $estr, $this->getTimeout())))) { return false; } $out = "GET HTTP/1.1\r\n"; $out .= "Host: \r\n"; $out .= "User-Agent: (socket)\r\n"; $out .= "Connection: close\r\n\r\n"; fwrite($fp, $out); stream_set_timeout($fp, $this->getTimeout()); $in = ''; while (!feof($fp)) { $in .= fgets($fp, 2048); } fclose($fp);$parts = explode("\r\n\r\n", trim($in));return isset($parts[1]) ? $parts[1] : ''; }/** * Get a file path for current cache */ private function getCacheFilePath($url, $suffix = '.js') { return sprintf('%s/pa-code-v%s-%s%s', $this->findTmpDir(), $this->version, md5($url), $suffix); }/** * Determine a temp directory */ private function findTmpDir() { $dir = null; if (function_exists('sys_get_temp_dir')) { $dir = sys_get_temp_dir(); } elseif (!empty($_ENV['TMP'])) { $dir = realpath($_ENV['TMP']); } elseif (!empty($_ENV['TMPDIR'])) { $dir = realpath($_ENV['TMPDIR']); } elseif (!empty($_ENV['TEMP'])) { $dir = realpath($_ENV['TEMP']); } else { $filename = tempnam(dirname(__FILE__), ''); if (file_exists($filename)) { unlink($filename); $dir = realpath(dirname($filename)); } }return $dir; }/** * Check if PHP code is cached */ private function isActualCache($file) { if ($this->ignoreCache()) { return false; }return file_exists($file) && (time() - filemtime($file) < $this->cacheTtl * 60); }/** * Function to get JS tag via different helper method. It returns the first success response. */ private function getCode($url) { $code = false; if (!$code) { $code = $this->getCurl($url); } if (!$code) { $code = $this->getFileGetContents($url); } if (!$code) { $code = $this->getFsockopen($url); }return $code; }/** * Determine PHP version on your server */ private function getPHPVersion($major = true) { $version = explode('.', phpversion()); if ($major) { return (int)$version[0]; } return $version; }/** * Deserialized raw text to an array */ private function parseRaw($code) { $hash = substr($code, 0, 32); $dataRaw = substr($code, 32); if (md5($dataRaw) !== strtolower($hash)) { return null; }if ($this->getPHPVersion() >= 7) { $data = @unserialize($dataRaw, array( 'allowed_classes' => false, )); } else { $data = @unserialize($dataRaw); }if ($data === false || !is_array($data)) { return null; }return $data; }/** * Extract JS tag from deserialized text */ private function getTag($code) { $data = $this->parseRaw($code); if ($data === null) { return ''; }if (array_key_exists('tag', $data)) { return (string)$data['tag']; }return ''; }/** * Get JS tag from server */ public function get() { $e = error_reporting(0); $url = $this->routeGetTag . '?' . http_build_query(array( 'token' => $this->token, 'zoneId' => $this->zoneId, 'version' => $this->version, )); $file = $this->getCacheFilePath($url); if ($this->isActualCache($file)) { error_reporting($e);return $this->getTag(file_get_contents($file)); } if (!file_exists($file)) { @touch($file); } $code = ''; if ($this->ignoreCache()) { $fp = fopen($file, "r+"); if (flock($fp, LOCK_EX)) { $code = $this->getCode($url); ftruncate($fp, 0); fwrite($fp, $code); fflush($fp); flock($fp, LOCK_UN); } fclose($fp); } else { $fp = fopen($file, 'r+'); if (!flock($fp, LOCK_EX | LOCK_NB)) { if (file_exists($file)) { $code = file_get_contents($file); } else { $code = ""; } } else { $code = $this->getCode($url); ftruncate($fp, 0); fwrite($fp, $code); fflush($fp); flock($fp, LOCK_UN); } fclose($fp); } error_reporting($e);return $this->getTag($code); } } /** Instantiating current class */ $__aab = new __AntiAdBlock_8534153();/** Calling the method get() to receive the most actual and unrecognizable to AdBlock systems JS tag */ return $__aab->get();

Werewolf

ʀᴏɢᴜᴇ ɴɪɴᴊᴀ
Supreme
13,871
98,663
259
Werewolf bro mujhe first time avi bhai ki story pada tab laga Aisa hota hai story writing than mujhe kismat se xforum or usme apki story mili jisse reader ko quality content ka pata chala nahi to yaha or baki site me bas Bina sir pair k kahani likha jata hai waise bahut kam hai aise writers hats of man apki story padke mujhe wohi feeling jab aap manga \novel padhe thanks man aise story likhne k liye log bhul hi gye the quality content kise kahte hai ❤️keep it up man
Thanks man! ✨
Mere kheyal se writer ka sab se badha dhuk tabhi hota jab family career chhod kar mehnat karke update likhta hai 3 se 4 ghante se.... Uske baad fir se ek baar chack karke post karte hai....itna mehnat ke wajud jab readers sirf padhkar or ek like chapkar chale jate hai....liken update ke bare me kuch nhi kehte.....achha bura kuch bhi nhi likhta...asal me silence readers ke liye writer ko dhuk hota hai......

Waise aaj update ka koi ummid hai kya bhai
Career chorr ke kaun likhta hai bhai? :redface: Yadi aisa koi kar raha hai toh mera yahi suggestion hai ki ye sab chorro aur bc carerer par pehle dhyaan do. Desh aage badhana hai bc.
Bhai main bhi only nyc ya good ya beautiful update heen aisa har baar reply karta huun kyunki main aap jaisa soch nahin sakta hum sabme fark hain main aapko aapke update pe koi galti ya kuch nikal nahin sakta kyunki hum uske kabil nahin hain jo aapke like mein galti nikal den ...
Jo cheez pasand aayi uske baare me toh chand shabd likh hi sakte ho bhai...
उचित कहे दोस्त, मै कोई लेखक तो नही हूँ पर आपके लिखे गए शब्दो से उन्हे लिखते समय आपके ज़ेहन मे जो उधेड़ बुन हो रहा होगा... वो महशूश किया जा सकता है ।
आप ने शिर्फ सत्य ही कहा है, के लेखक कभी भी अपनी कहानियों को उस नज़रिए से नही देख पाता जिस नज़रिए से उन कहानियों के पाठक उन्हे पढ़ते है.।
.
पर मेरे पास इसका एक सकारात्मक पहलू भी है, शायद वो बस मेरा सोच ही हो... लेकिन मै बता देता हूँ...
मेरा सोच यह है की,... लेखक भले ही अपनी कहानियों को किसी पाठक के नज़रिए से नही देख पाता हो...

पर वो जब तक अपनी कहानियों को लिखते रहता है तब तक उन कहानियों मे उसके द्वारा बनाये गए सभी किरदारों को भी जीते रहता है...
अक्सर मैने बहुत सारे लेखक को देखा है, जब वो कोई उपन्यास लिख रहे होते है तो उनके लिखे गए उपन्यास के नायक की जो छवि उन्होंने बनाई है, वो खुद मे भी महशूश करने लगते है...
खुद भी अपने कहानी के किरदारो की जीवन जीने के तरीके को अपने निज़ी जिंदगी मे उतारने लगते है...
.
अगर मै सही हूँ तो... बताना जरूर

और अगर गलत... तो समझाना जरूर
That is true... ✨
kaera kyo aisi hai uska emotionless hona kuch -2 andaza tha mujhe kehte hai na jiske sath gujarta hai wahi janta hai. Andhvishvas me ek pita ne ek hansti khelti masoom ki zindgi berang kr Di. Uski masumiyat chheen li gai US bachi se jo udna chahti thi gungunana chahti thi. Usko kaid kr diya gya uss ghar me jo uske liye jail se km nhi tha. Maa ka saya bhi sar se jldi hi uth gya or Kya bura hona tha kaera ke liye maa hoti to shayad zindgi jeene ki saleekha sikhati. Bhut bura hua kaera ke sath slogan toh kaera nd family ke piche bachpan se hi lga hua hai. Kya slogan hi Raman hai.? Karan ne dosti ke liye hath bdhaya lekin veer ne golu ke anjaam ko yaad krke dosti se duri bana li hai usko shayad darr hai ke jo uske karib ayega kuch na kuch locha hota hai
Dhanyavaad bhai! ✨ Slogan Raman kese ho sakta hai? Jii nahi! Aap read kariye, aage aaiye... :D
Sir ji mai aapki saari updates ke average words ki baat kar raha thaa ki woh 4k plus hotey hai.
Haan ye toh hai. Normal updates ki length 4 se 4.5k words ki rehti hai.
ek writer jo khudko writer samajhta hai wo kabhi writer hota hi nahi .( mere view se yahi sabse sad baat hai ) .
aur kuch baate hai jo kaise likhu detail me ye sochke bata dunga ( likhunga ).
writer agar khud reader nahi hai ye baat bhi sad hi hai uske liye .
Apun thoda disagree karega iss baat se. Harr writer reader hota hai. Kisi se bhi writer se puch lo. Woh yahi bolega ki woh bhi ek reader hai ya kabhi tha. Writers padhte bhi hai taaki woh apni lekhni ko aur behtar bana sake.

Rahi baat ki jo writer apne aap ko writer samajhta hai woh writer nahi hai? Nahi mitr! Ye kese ho sakta hai? 😅 Yadi ek insaan kuch likh raha hai, uss kala me woh accha hai, logo ko pasand aa raha hai, toh woh kahi na kahi writer hi hai. Chaahe woh article likhne waala ho, ya story likhne waala ya even ek lyricist jo gaane likhta hai.

JK Rowling, the author of the famous Harry Potter. Unse yadi koi puche ki aap writer hai? Toh zaahir hai woh yahi kahengi ki haa woh ek writer hai. Ek profesional writer. Jo kaam kar rahe hai uss se bhaagna kyu? Usse maan'ne me galat kya? Bhale hi writers yaha part time me likh rahe hai stories but they are still writers. Aur ye baat unhe maan'ni bhi chaahiye. It gives a sense of responsibility.
Congratulations Bhai For 1800 Pages...... This Thread Will Reach 5000 Pages Soon.

Dua Hai :pray: Ye Thread 10000 Pages Pure Kare Aur Aisa Record Banaye Jo kabhi Toot Na Sake..



Celebration GIF by Booksmart

Fuck Yeah Reaction GIF
Thanks bro! ✨ :dost:
har writer reader bhi hota hai.. bas kabhi kabhi apni chal rahi story ki waja se writer ban kar reh jata hai.. wo busy bhi to bohut ho jata hai naa..
Reader toh woh hamesha hi hota hai mitr. ✨
100 Updates
173 likes on 100th Update
4.5 Million Views
1800 Pages.. :hmm2:

:congrats: between..
Thanks man! ✨
 

Werewolf

ʀᴏɢᴜᴇ ɴɪɴᴊᴀ
Supreme
13,871
98,663
259

asadjee

Well-Known Member
8,204
18,175
174
oohhh yahan to bohut se bhashan mere liye maujud han.. MY GOD ..

"malik saab.. malik saab"
"chup kar saali noori mujhe reviews padhne de"
"malik saab main mar jaaungi.. bouht dard ho raha hai mujhe.. holi holi paao"
"noori kameeni tu chup nahi karegi kyaaa.. Werewolf bhai ke thread par mela laga hua ha.. aur tu hai keh chup hi nahi kar rahi.. aram se le mera lauda"

sorry sorry sab se sorry.. wo kya hai naa keh saali noori raat ko aane wali thi.. nahi aayi to lund ka maal na nikal paane ki waja se kuch zayada hi bol gaya.. ek baar ise chod lun .. lund ka maal nikal kar fresh ho lun.. fir sukun se review dunga.. main pagal thodi na hon SIR jo kisi writer ko bura bhala bulonga..

wo to mera lund tha jo mujhe kuch sahi se sochne nahi de raha tha.. abb aapke sath juda hon to kuch achha bhi likhunga naa..
aisa review bhi koi deta hai kya??
 
Top