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

Fantasy Gods and Demons

just YES OR NO


  • Total voters
    318
  • Poll closed .
Status
Not open for further replies.

Lovekillsyou

Active Member
653
2,717
124
Note- Update 177 hi 178 hain
 
Last edited:
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();

Hami123

Member
427
1,333
139
UPDATE 39

Kabir ke 1 million coins ko aise hi kisi cheez ko buy karne se sabhi kaafi shocked the. Sabhi ko lag raha tha ke vo jitna Heavenly Marks Family ke baremien jante hai vo sab kuch bhi nahi ha. Wahi 1 million coins Kabir ke liye kuch bhi nahi the. uske current wealth dekhi jaaye toh vo top 5 wealthiest person ke ranks mein aa sakta hai. Saath hi Alchemist Association ke saath partnership hone ke wajah se uski yeh wealth aur bhi badh rahi thi.

Kabir ko kisi bhi cheez ke baremein kuch bhi sochne ki zaroorat hi nahi thi ab. Uske dil aaye toh vo pura auction house hi kharid sakta tha. Vo bhi koi problem ki bina. Phir bhi Kabir ne apne bolne ki price ko kaafi low rakha tha kyo ki vo jo bhi buy kar raha tha vo Heavenly Marks Family eke naam par kar raha tha. Jike wajah se uspar kisi ka attention bhi nahi jaa raha tha. Phir bhi ek pura auction house ko buy kar lena kaafi high profile ho sakta hai.

Wahi baaki sabhi wealthy merchants niche baith kar yahi discuss kar rahe the ke abhi ho kya raha hai yaha.

“yeh Heavenly Marks Family kab se itni rich ho gayi ?”

“mein ne suna hai Heavenly Marks Family ko Alchemist Association ka support hai. saath hi Alchemist Association unse herbs buy karte waqt 30% jyada price deti hai unhe market se.”

“kya unhone yeh kiya ? tab toh koi shak hi nahi hai ke Heavenly Marks Family itni rich hai”

Wahi yeh sab baate sunkar Patriarch kaafi tension mein the kyo ki yeh sabhi items ko Kabir apne paiso se buy kar raha tha. Heavenly Marks Family ka unmein kuch bih nahi laga tha abhi tak. Agar Heavenly Marks Family itni rich hoti toh koi baat nahi thi. Vo sabhi paise kisi bhi tarah se Heavenly Marks Family ke nahi the. Heavenly Marks Family ke Patriarch aur member hone ke naate unhe hi sabhi paiso ko pure family mein contribute karna padta tha. Magar ab jo Kabir ki position thi family mein uske wajah se vo Kabir ko kuch bhi kehne se thoda darte the.

Silver Tiger Family aur baki ke noble family ke Patriarch depressed se ho gaye the. Vo sabi jo kuch bhi dekhte usse Heavenly Marks Family buy kar rahi thi. Jab ki unhe koi bhi item abhi taka hasil hi nahi ho paaya tha. saath hi jo price lag rahi thi ab sabhi items ke upar usse toh vo sabhi apni price hi nahi bol paa rahe the.
Dusre family ke patriarch toh bas Heavenly Marks Family ke patriarch ke baremein sirf soch hi sakte the. unhe lag raha tha ke yeh sab Heavenly Marks Family ke patriarch hi buy kar rahe hai. Unhe yeh zara bhi nahi laga tha ke Heavenly Marks Family itni rich nikalegi. Par unhe yeh nahi pata tha ke yeh sabhi items ko Kabir buy kar raha hai.

Kabir-dekhiye mein kitna attention apne Heavenly Marks Family ki taraf khich raha hu.

Kabir ne yeh baat patriarch ko dekhte hue kahi thi. Kabir ki yeh baat sunkar patriarch ne apne face ko dusre side ghumaya. Unhe ispar koi baat nahi karni thi.

Patriarch-tum aur kitne items ko buy karne ke baremein soch rahe ho.

Ab tak Kabir ne almost 10 items ke upar buy kar chuka tha aur 2 million tak ke paise ko kharch kar chuka tha.
Wahi Kabir haste hue kehta hai.

Kabir-mujhe jo bhi achha lagega vo mein buy karta rahunga.

Kabir ki yeh baat sunkar patriarch ka muu khula ka khula reh jata hai. Patriarch ka muu itna khula hua tha ke usmein koi bhi ek egg rakh sakta tha. Wahi Patriarch sochne kag jaate hai.

Patriarch-Sheela ne actually mein Kabir ko itne paise diye hue hai. Alchemist Association toh aakfi generous hai. Itne paise uhone casually Kabir ko khali pocket money diye hai. yeh kaafi unimaginable hai ordinary person ke liye.

Bohot der baad bhi kisi ne bhi apni taraf se koi price nahi boli thi. Yeh dekh kar vo host ladki 3 baar zpr se bolti hai aur us hammer ko patak kar Gold Rank suit ko Heavenly Marks Family ko de deti hai. Tabhi vo aage kehti hai.

Ladki-Aage aane wala item hame Alchemist Association ke taraf se aaya hai. yeh hai The Soul Nurturing Pills aur The Soul concentrating Pilss. Saath hi is baar hame 1000 The Soul Nurturing Pills aur 100 The Soul Concentration Pills mili hai. Mein phir se sabhi ko apne apne mood ko thik karne ke liye kehti hu aur is items ke liye sabhi apni price lagaye.

Us host ladki ki baato ko sunkar sirf vo badi families ke Patriarch hi nahi balki niche baithe sabhi merchants bhi kaafi excited ho gaye.

The Soul Nurturing Pills aur The Soul Concentrating Pills ke aane ke baad toh usse lene ke liye OSIAN CITY mein bade bade families ki baad si aa gayi thi. Bohot se demon spiritualist ke soul nurturing aur soul concentrating pills lene ke baad unki cultivation kaafi badh gayi thi. Kuch toh Silver aur Gold rank mein bhi breakthrough kar gaye the. Kisi spiritualist ki soul unsuitable nahi thi soul force ke training ke liye par jab unhone soul nurturing aur soul concentrating pill li toh unki soul suitable ho gayi thi soul force training ke liye.

Is sab ke wajah se yeh 2 pills kaafi mushkil se mil rahi thi. Bohot se families toh kisi bhi kimat par yeh buy karna chahti thi kyo ki un sabhi ko apne aane wali new generation ko nurture karna tha. Magar in 2 pills ki amount kaafi kam thi. Jo amount Alchemist Association ki taraf se OSIAN CITY ke bade marke ke liye aara hi thi vo kaafi kam thi. Normal situation mein sirf Major Families aur Noble Families hi un pills ko bade amount mein le sakti thi. Abhi jaha auction ho raha tha vo 3 badhe auction houses mein se ek tha. Saath hi ek yahi tha jisse yeh dono pills mili thi sell karne ke liye.

Wahi Heavenly Marks Family ke patriarch ki aankho mein ek chamak aa gayi un pills ke baremein sunkar.
Patriarch-kabir tum in sabhi pills ko jitna chahe buy kar lo.

Yeh dono pills kaafi achhi thi kisi ke bhi cultivation ko badhane ke liye. Especially soul concentrating pill. Iska effect kaafi strong tha even Patriarch aur Grand elder par bhi is effect kaafi achha hota tha. Sirf unke cultivation badhe ne se hi unke family ki position bhi badh sakti thi.

Kabir-aap ko yeh buy karne ki kya zaroorat hai ? Alchemist Association ne aap ke yeh pills nahi diye hai.
Kabir ne yeh baat thode shoking way mein kahi thi. In sabhi pills ke formula ka contributor hone ke wajah se uske paas in pills ki koi kami nahi thi.

Patriarch-Alchemist Association hame kyo pills bhejenge.

Patriarch ne yeh baat kaafi puzzle ho kar kahi thi. Wahi Kabir ek pal ke liye ruk gaya aur phir usse sab samajh aagaya ke kya chal raha hai. yeh sabhi pills ko Sheela khud se control karti thi. Sheela ne usse bohot se pills pehle hi de diye the. Including several hundreds of thousand soul nurturing pills, several tens of thousands of soul concentrating pills, aur few thousands of soul tempering pills. The Scarlet Body Enhancing Pills aur Nine Transformation Pills ki baat hi nahi thi. Sheela ne vo pills bhi Kabir ko kaafi amount mien di hui thi.

Sheela ne Kabir ko kaafi saari pills di hui thi lekin Heavenly Marks Family ko nahi di hui thi. Un sabhi ke liye Kabir Heavenly Marks Family ka representative tha.

Yeh soch kar Kabir apne sir ko jhatakta hai aur kehta hai.

Kabir-nahi kuch nahi.

Usne soch liya tha ke baad mein vo un sabhi pills ko family mein baat dega. After all vo Heavenly Marks Family ka member tha.

Auction house ka atmosphere kaafi heated ho gaya tha. Us host ladki ne yeh sabhi dekh liya aur kaha.

Ladki-aaj ke auction mein soul nurturing pills ko sets of hundred mein sell kiya jaayega aur soul concentrating pills ko sets of ten mein sell kiya jaayega. Inki starting price hai 10,000 demon spirit coins. Iski auction ab start hoti hai.

150,000 demon spirit coins.

160,000 demon spirit coins.

….

Jaldi hi un sabhi pills ki price 200,000 tak aa gayi. Wahi Heavenly Marks Family ke Patriarch ka face kaafi tens ho gaya tha. Patriarch already 60,000 demon spirit coins tak ko spend karne ke liye ready the soul nurturing aur soul concentrating pills ke sets ko buy karne ke liye. Haevenly Marks Family yaha tak hi spend kar sakti thi agar unki financial halat dekhi jaaye toh. Jab un pills ki price 200,000 ko touch ho gayi thi Patriarch ne apne aap ko rok diya.

Wahi uske paas ke sabhi Patriarch Heavenly Marks Family ko dekhne se lag gaye the. unhone abhi tak koi bhi price nahi lagayi thi isse sabhi thode shock se the. kyo ki abhi tak jitney bhi items aaye the un sabhi ko Heavenly Marks Family ne buy kar liya tha. Wahi baki sabhi un pills ke set ke liye fight se kar rahe the.

Jab noble families ke Patriarch ne dekha ke Heavenly Marks Family is fight mein nahi utar rahi hai toh vo sabhi families bhi is pills ko lene ke fight mein utar gayi. Heavenly Marks Family ke auction mein hone ke wajah se aaj sabhi par ek pressure sa aa gaya tha par sabhi ne dekha ke ab Heavenly Marks Family ne unhe pills ke fight mein koin nahi kiya hai yeh jaan kar sabhi ke dil ko raahat mili. Sabhi yahi soch rahe the ke chahe jo ho jaaye aaj sabhi un pills ko buy kar ke hi rahenge. Nahi toh yaha aan hi unka waste ho jaayega.

Silver Tiger Family bhi is fight mein join ho gayi thi. Unhe bhi kisi bhi halat mein vo pills chahiye thi. Par vo bhi jab pills ki price 320,000 demon spirit coins tak pohoch gayi tab ruk gaye. Wahi Patriarch Kabir se kehte hai.

Patriarch-kabir yeh kaafi precious soul nurturing pill hai, tum isse buy nahi karne wale.

Yeh keh kar Patriarch Kabir ko dekhne lag gay eke Kabir kya kahega.

Kabir-nahi mein inmei interested nahi hu. Mein ne pehle hi bohot se items buy kar liye hai. Waise bhi akele hi sab kuch lena kuch achha nahi lag raha hai mujhe.

Kabir ke iss baate se Patriarch kaafi shock ho gaye aur sochne lag gaye.

Patriarch-isse interest nahi hai soul nurturing pills mein. Yeh pills younger generation ke liye kaafi helpful ho sakti thi. Wahi ek family ne un pills ko 330,000 demon spiric coins ke liye buy kar liya. Tabhi Patriarch ko kuch yaad aata hai.

Patriarch-ohh right Kabir aur Alchemist Association mein kaafi achhe relations hai. Shayad Director Sheela ne Kabir ko pehle hi pills de rakhi ho issi wajah se Kabir un pills mein interested na ho.

Patriarch Kabir ke paas aate hai aur kehte hai.

Patriarch-kabir tumhare aur Director Sheela ke relation kaafe achhe hai toh kya unhone tumhe yeh pills nahi diye hai.

Kabir unhe dekhte kehta hai.

Kabir-diye hai par vo sabhi unhone mujhe khud se diye hai mein ne maange nahi hai. toh kya aap ko vo pills chahiye. Agar chahiye toh mein aap ko de deta hu.

Patriarch yeh sunkar kehte hai.

Patriarch-are nahi mujhe vo nahi chahiye. Mein toh bas is liye keh raha tha ke tum unhe achhe se sambhal ke rakho.

Kabir-ohh. Care karne ke liye thanks Patriarch.

Wahi Patriarch kuch sochne lag jaate hai tabhi unhe unke side se aawaz aati hai. yeh ek noble family ke member the.

Kya aap nahi buy karnewale hai un pills ko.

Jispar patriarch apne aap thoda thik karte hai aur kehte hai.

Patriarch-nahi sirf mein hi akele sab buy karte rahunga toh yeh achha nahi hoga.

Unki yeh baat almost sabhi ne sun li thi aur sabhi us baat se kaafi shock bhi the.

Yaha niche abhi bhi un bache hue sets ke liye sabhi mein fight chal rahi thi. Lekin jaldi hi vo sabhi sets khatam ho gaye the. Ab bache the soul concentrating pills ke sets.

Silver Tiger Family ke Patriarch ne isse bhi achha chance samjha aur uske liye bhi fight mein utar gaye. Jaldi hi unki price bhi 600,000 demon spirit coins tak aa gayi. Lekin Patriarch aur Grand elder kuch bhi nahi kar sakte the iske liye kyo ki Kabir ne saaf saaf inkar kar diya tha. Jispar Grand elder uske paas aate hai baat karne ke liye.

Grand elder-kabir kya tum hamare liye bid kar sakte ho. Family tumhari yeh help kabhi nahi bhulegi.

Grand elder ki is baat par Kabir hasta hai aur kehta hai.

Kabir-ab aapne yeh baat keh hi di hai toh yeh koi problem nahi hai. Magar hame iske liye auction mein part lena zaroori nahi hai. Mere paar already bohot se pills hai.

Yeh keh kar Kabir ne apne storage ring mein se ek aur ring nikali aur usse Grand eldr ki taraf dete hue kaha.
Kabir-yeh lijiye ismein 5000 soul nurturing pills hai, 600 soul concentrating pills hai aur 100 soul tempering pills hai. yeh gift hai meri taraf se Grand elder ke liye.

Kabir ke iss baat se Patriarch aur Grand elder ko kya bole kuch bhi samajh nahi aa raha tha. Dono itne shock ho gaye the ke khade kadhe hi kaampne lag gaye the. Wahi Grand elder kaapte hue haatoh se us ring ko lete hai aur phir apne aaspas dekhne lag jaate hai ke unke baton ko kisine sun toh nahi liya. Jispar Kabir kehta hai.

Kabir-aap chinta mat kijiye. Koi bhi hamari hone wali baato ko sun nahi sakta hai. Mein ne ek technique use ki hui hai.

Patriarch aur Grand elder dono hi ek dusre ko dekhne lag gaye the. Vo jitna bhi Kabir ko samajh ne ki koshish kar rahe the vo utna hi unke samjh ke bahar jaa raha tha.
Nice update
 

Rudrathakur

Active Member
586
3,384
123
Baba iss baar ka kabir sbhi ki soch se uppr h ...alien type kyuki wo khud alien bn chuka h...aakhir 2000+ years jeene ke baad fir se iss kaal me aaya h to itna aasan thode hi h smjhna ki jis kabir ko wo log jaante the wo ye h to lekin hokr bhi ye wo nhi h bahut kuchh bn chuka h ... Bahut hi behtrin update brother...
Keep fast posting kyuki tumhari kahani itni gajab h ki break sahan nhi hote h brother...so request yahi h ki thoda sa waqt apne busy routine se hm readers ko bhi dete rhiye.. Wrna jo sma ek update se bandhta h wo next update tk tutne lgta h....thnks for the beautiful story
Waitng for the next 2 days me 1 update ki speed kafi behtar h keep it up :party:
 
Status
Not open for further replies.
Top