• 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.

Thriller Waah! Life Ho Toh Aisi - All Hell Broke Loose (Completed)

Part 3 kaa title kya hona caahiye?

  • Waah! Life Ho Toh Aisi - The Merchant Of Death

    Votes: 189 81.8%
  • WLHTA - The Merchant Of Death

    Votes: 14 6.1%
  • Waah Life Ho Toh Aisi - 3

    Votes: 23 10.0%
  • Any Other, Post that in The Thread

    Votes: 5 2.2%

  • Total voters
    231

AP 316

Politically Correct And Motivated.
Divine
10,808
574,967
259
अबे AP, तेरे को मैं ना दिखया बे।

Well, as usual, the update was awesome....

Keep it up....
Dikh gaye bhai :D

Cmnts main Sab padhleta hun yaad bhi rakhta hun :DSab but sabke reply nahi depaata as time bahot kam hota hai Isliye time miltey he update deke nikal leta hun :D

Aage se Sunday ko keval reply reply k liye rakhlenge agar tum Sab kaho toh Sunday ko jiske Jo questions hain woh puchna and main reply kardunga :D ...Dekho jaisa sab bologe waise karenge


by the way thanks Bhai keep supporting
 
  • Like
Reactions: Aakash. and RAAZ
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();

JigsRock

Member
273
519
108
Waiting your faadu and dhamakedar update Bhai.....
 
  • Like
Reactions: Aakash.

AP 316

Politically Correct And Motivated.
Divine
10,808
574,967
259
Update-13(The Intros)
Andar babhi Or Anjali Ami k thobde par dawaai laga rahe they or Ami kuch bataa rahi thi unko...

Ami-AP is like my godfather I know main age mein usase badi hun and all but woh meri life mein uss time aaya jab mere pass koi options nahi bachey they my life was almost over but he came and healed my life he saved my life and gave me a reason to live I am so thankful I got friends like him and Abeer...I owe my life to him...

Ispar Sab thoda emotional type hogaye najaane kyun unko kaafi touching lagi ye baat..

Main-she is my bodyguard you know...

Ye sunke sabne mereko khaa jaane waali najaron se dekha ..


Anjali-Shut up...kuch bhi bolta hai...

Babhi-Raipta khaaega thobdey par...

Main -arey puchlo usase caahe a Ami bata toh...

Ami -Yep kind of his bodyguard you can say...:D...

Main-lo ab bolo...

Anjali-Shut up...

Main-majaak kar rela tha:D...

Fir kaafi derr takk baat chit challi wahaan par sablog Ami se comfortable they koi darr koi shakk kissi k Mann mein nahi tha jiske do reasons they no.1 woh thi he aisi duniya k liye killer or hum Sab k liye loyal friend...No.2 uski guarantee Maine Lee thi toh sablog aankh bandh karke uspar Vishwash kar shaktey they ..or ye kaafi achi baat thi ki Sab ghull mill jaaein kyunki isko toh last takk jaana hai :D...

Or kaafi derr baad jab Anjali ko police station se call aaya toh woh and baaki nikal liye shayad koi case tha....Bhai bhi party office k liye nikal gaye ...

Main-Laa tereko room dikhaadeta tera aaja...

Ami-By the way babhi Ji this house is so cute...

Main-this is called haweli itana bada house dekha hai kabhi tune jaahil ganwaar....

Babhi-Tu maar khaaega beta aaj...Ami select whichever room you like...

Main-Abeer iska samaan uthaa toh...

Uska samaan leke hum teeno uppar aae mere room k left mein Ravi kaa room tha or right kaa khaali tha wahin Ami ko bhejne waala tha main...isliye humlog uppar gaye room khola or uska samaan rakha...

Ami-Wow!this room is huge and so cool...

Main-I know...woh chhod tu idhar kaise ...?

Ami-bola toh tha ki I will find you...tu kahin bhi jaa tujhe dhund he lungi main...

Main-fir bhi ittani jaldi....

Ami-I am smart...By the way nice backup story back there....

Main-i know I am smarter then you... Listen yaad rakhna tera only challenge hai yahaan adjust hona ye woh Sab nahi hai ki jisko Mann kiya thok diya jo milla uska hath Todd diya ye Sab nahi challega ...agar adjust nahi hui toh tu waapis jaaegi....

Ami-jarurat nahi hai uski...now can I hug you guyss...I missed you guys so so so so much....

Main-no hugging at all...

Ami-ok thankyou...

Ye bolke woh merese Galle milli ....

Main- Met my Bhai and babhi....

Ami-Yep your babhi is so cute and adorable yaar woh toh even meri side bhi leti hain aajtak kissi ne meri side nahi Lee I love her ..

Main-shut up...Sun Mujhse jyaada unlog par trust kar shakti hai tu ...aage kai baar aisi situations aaengi ki tumhe ek ko choose karna hoga yaad rakhna humessa unlog ko choose karna ...bhai and Babhi are like god to me....

Ami-i will die before going against you...

Main-That was an order....or chhod mujhe ab sans nahi aaraha hai...

Fir woh Abeer se Galle milli...

Abeer-I told him ki tu jaldi aaegi...

Ami- you know me dude I am the smartest one in the room...

Main- aham -aham...

Ami-ohh!sorry second smartest..

Main- better....Ab sun sabko tu jaanti he hai Kon kaisa hai kon k karta hai wagairaah wagairaah Anjali is a Police officer as you know ...

Ami-yeah...

Main-toh main tujhko uske sath bhejunga woh tujhe Sab seekha degi yahaan kaa atmosphere, discipline kaise behave karna hai + tu cases mein help kar shakti hai uski...

Ami-ok sir anything else...

Main- rest le ...or yaad rakh Jo Maine samjhaaya...


Ami-Sure....tera room kidhar par hai...

Main-Side mein ...

Ami-ok ...

Main-agar disturb kiya toh munh fod dunga ...

Uske baad main or Abeer bahaar aagaye ...

Abeer-abe tension naa le woh Sab dekhlegi...

Main-lets hope for the best...


Uske baad main or Abeer shopping k liye gaye or bharr bharr k kapde and shoes le liye..... Insab mein he aaj ka din nikal gaya meri marksheet bhi aachuki thi toh kal admission k liye jaana tha college mein...

Continued..
 
Top