• 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 Rise Of A Vampire

So Tell me you Like it or not?


  • Total voters
    81
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();

SinghChandan

007❤️
206
810
93
WOW Congratulations 🤩🥳
 

Xabhi

"Injoy Everything In Limits"
10,210
42,632
174
Update 7:- (Unwritten Rules)







Jaise hi hum dono hallway se jaa rahe they waise hi mujhe apni body mein ek sudden surge mehsoos huyi. Peter “Hey, sayad tumhe doctor ke paas jaana chahiye, mujhe pata hai is School mein Healers hai wo tumhe ek baar mein thik kar denge.” Main “yeah thanks, main wahi jaa raha hu, aur tujhe mere sath aane ki koi jaroorat nahi hai, kal waise bhi busy day hone wala hai to tujhe Dorm mein wapis chale jaana chahiye.”






Halanki peter mere liye worried tha lekin fir bhi lawde ki fati padi thi. Peter bhi jyada der tak Hallway mein nahi rukna chahta tha. aur mujhe pata tha ki Peter hesitate ho raha hai ki kya kare aur kya na kare. Isliye usey uski uljhan se nikalne ke liye maine hi bola. Main “Dekh tu tension mat le, aakash bathroom gaya hai aur wo dorm mein hi tere ko milega.” Meri baat sunte hi Peter jaldi se dorm ki taraf bhag gaya apni Watch chupate huye kyuki usey firse yahi incident nahi chahiye tha wo bhi itna jaldi.





Uske jaate hi main jaldi se paas wale Boy’s Washroom mein ghus gaya, maine ghuste hi apne hath ko dekha jaha Kyle ne apne Claw se cut maar diya tha. mirror mein dekhte huye main asani se mera Arm khud be khud heal hote huye dekh sakta tha. halanki ye kaafi slow lag raha tha lekin Reality mein ye kaafi fast tha. aur kisi ko apni hi kisi chot ko aise naked eye se heal hote dekhna ek amazing sight thi. Mere ko apni body mein kuch strange hota mehsoos ho raha tha. maine ye baat Peter ke sath baat karte huye notice ki thi aur isiliye hi main Peter ko jaldi se bhagana chahta tha taaki ye dekh ke Peter ko ye na lage ki mere paas koi Ability hai.





Kuch minutes wait karne ke baad maine apni Status Screen kholi, aur jaisa maine socha tha wahi ho raha tha aur meri HP dheere-2 badh rahi thi.





<HP 8/10>

<HP 10/10>

<Your HP had been healed>

<Your Hunger has grown>




Jaise ye notification aayi waise hi mujhe bhi bhookh lagne lagi aur iska matlab yahi tha ki agar System mere Wounds ko Heal kar raha hai to use badle mein Energy bhi to chahiye hogi. Mere Pet mein halka sa dard tha jaise main aaj ka Breakfast miss kar diya ho. Lekin kuch khaane se Pehle mujhe ek kaam aur tha jo main abhi karna chahta tha aur wo kaam tha training Room mein jaane ka. Abhi late ho raha tha aur kal se Classes start thi isliye jyadatar Students wapis chale gaye they aur iska matlab yahi tha ki ab mere paas best chance tha training room mein jaane ka jab mujhe koi dekh na raha ho.





Main Finally Training room mein pahucha ye ek large hall tha jo ki bich mein bikul khaali tha lekin walls ki taraf bhut saare technological equipments rakhe huye they. Waha pe bhut se Mech Robots they, Shooting Targets aur bhi bhut kuch tha jiske baare mein mujhe kuch idea nahi tha mujhe to bas Power Level testing Equipment ki talash thi. Kuch der idhar udhar dekhne ke mujhe wo Same machine dikhi jo Testing Field mein thi. Is Waqt yaha koi nahi tha isliye main jaldi se us Drum ke saamne jaake khada ho gaya.





Waha pe mere alawa ek Person aur tha jiske baare mein mujhe pata nahi tha. wo aur koi nahi balki Sneha thi aur wo mere aane se pehle apne arrows se Target Practice kar rahi thi lekin mere aane se wo chup ke mujhe dekh rahi thi ki main kya karne aaya hu kyuki main lawda sabki nazro mein weak tha. wahi maine apni gaand tak ki Strength use karke us drum ko Punch kiya aur mere andaze ke hisab se mera Score 10 hi tha jo mera system mujhe pehle se hi bata raha tha. Wahi Sneha mujhe dekhke Shock thi kyuki mere Strength ab Double thi aur usey lag raha tha ki maine apni strength sabse kyu chupayi aur isiliye usne mera picha karne ki soch li aakhir wo bhi pata karna chahti thi ki mere jaise Weak ladke ko apni Strength chupane ki kya jaroorat hai. Aur mujhe is baare mein lawda kuch nahi pata tha.




Agli subah sabhi students ek alarm se 8:00 baje uthe aur ye alarm pure dorm mein baji thi aur iska matlab tha ki apni gaand uthao aur dress pehenke jaldi se Canteen mein pahucho Breakfast ke liye. Wahi main jab uthke naha dhoke tel lagake Canteen ki taraf nikla to mujhe Sytem ne is notification se mujhe welcome kiya.



<You have completed your daily Quest>

<Avoid direct sunlight for 8 hours>

<Reward 5 Exp>

<75/100 Exp>




Main jaldi se Canteen mein Pahcuha to wahi mujhe Peter aur Aakash mil gaye main bhi unke sath apni plate leke baith gaya aur khaane pe tut pada aur mujhe khaana khaate dekh ke aakash aur Peter bhi hasne lage. Maine jaldi se apni Plate finish ki aur Peter ki Plate bhi finish ki jo usne chod di thi, meri bhookh nahi mitti thi to maine lagatar 2 littre pani bhi pi liya tab jaa ke saans aaya.




<A daily Quest has been complete: Drink two litres of water>

<Reward 5 Exp>

<80/100 Exp>




Ab main sirf 20 Points dur tha level up karne se aur main ye dekhne ke liye excited bhi tha ki Level 2 pe pahuchne ke baad mujhe kya benefits milte hai ya ye System chutiya hai. Fir mujhe suddenly apni Inspect Skill ki yaad aayi to main wo Skill Aakash pe use ki.




<Name: Aakash Blade>

<HP: 10/10>

<Race: Human>

<Ability: None>

<Blood type: O->




Main aakash ki ye detail dekh ke kuch had tak shocked ho gaya tha kyuki ye bata raha tha ki Aakash ke paas koi ability nahi hai.


Main “Oye Aakash, kya tu Erin ki Ice Power abhi bhi use kar sakta hai kya?”




“mujhe nahi pata tha ki tum mujhme itne interested ho.” Aakash ne mujhe aankh maarte huye bola. “Actually meri ability roz reset ho jaati hai aur maine aaj subah se kisi ki ability copy nahi ki hai to abhi filhal mere paas koi ability nahi hai.” Iske baad mere mann mein bhi koi doubt nahi raha aakash ki ability ko lekar isliye hum teeno hi Class ki taraf nikal gaye. Ye time first Class ka tha aur hum teeno hi apni batayi gayi huyi class mein pahuche aur hamara Class teacher wo kal wala jhaatu Del hi tha. yaha pe baithne ki seats Power levels ke according thi lekin aakash mere aur Peter ke sath end mein hi baith gaya Level 1 wali Seat pe. Aur aisa hote hi doosre students ne apas mein baate suru kar di aakash ko leke ki wo weak Level 1 walo ke sath kyu baitha hai isse strong students ka naam kharab hoga. Uske baad hamara introduction hua ek normal class ki tarah aur aise hi wo class bhi nikal gayi.




Main, Peter aur Aakash teeno hi Class se bahar aa gaye kuch Snacks khaane ke liye. Jaise hi maine class se nikal ke hallway clear kiya to mere saamne fir se ek notification aa gayi.



<All Stats Have Been Halved>


Hum teeno ne snacks liye aur wk bench pe baith gaye. Is time mujhe bhut pasine aa rahe they aur mujhe kaafi weak feel ho raha tha.

Aakash "oyy, tu thik to hai na, mujhe firse tu bimar lag raha hai."

Main "nahi be chutiye bimar nahi hu bas mujhe garmi dusro se jyada lagti hai."



Hum teeno thode time tak wahi baithe bakwas baate karte rahe jisme main aur aakash hi ek dusre ko gaaliya de rahe they. Lekin achanak hi hamare saamne ek 6 ladko ka group aa gaya aur un sab ke Arm pe ek badge laga tha jisse pata chal raha tha ki wo sabhi Second year wale hai.


"Lagta hai Rumours sahi hai, tum teeno ko hamare sath aana hoga, humey tumse kuch baat karni hai."



Wo hum teeno ko ek khopche mein leke gaye aur humey ek hi baat boli jo ki is School ka ya ye keh lo is World ka "High Power level wala Person Low level ke Power level wale se dosti nahi rakh sakta" ab main aur pete to kuch nahi bole kyuki hamari aukat hi nahi thi aur aakash ke paas bhi koi Ability nahi thi is time aur usey pata tha ki ye log bina uski ability jaane usey touch bhi nahi karne denge. Mujhe aur peter ko Aakash kaafi sahi banda lagta tha aur wo hamare sath rehta tha to hume koi tang bhi nahi karta tha lekin is baat se sayad high level pe baithe log offend ho gaye they aur isiliye unki baat ka saaf matlab tha ki hum alag alag rahe aur is baat se hum teeno hi khus nahi they aur teeno ke hi is baat mein alag alag reason they. Mera reason saaf tha ki mera is jindagi mein ab tak koi dost nahi tha aur maine in dono ko hi Apna dost maan liya tha Lekin mujhe in dono ke reasons hi pata nahi they.



Aur is baat ke liye humne decide kiya ki Aakash humse duri bana ke rakhega kyuki abhi main aur aakash bilkul bhi Second Year walo se panga lene ke liye taiyar nahi they. Is baat se Aakash bhut gussa ho gaya aur hum dono ko chod ke kahi chala gaya. Lekin Aakash alag kism ka insaan tha usey meri fikr thi ki kahi mujhe wo log hurt na kare isliye wo mujhse dur ho gaya lekin wo shaant baithke sab kuch sehne walo mein se nahi tha aur usne mann bana liya tha ki wo ab sab ke piche jaayega jo humey alag karne mein laga tha.




Aur wahi Sneha bhi mujhe chupchap follow kar rahi thi jiske baare mein mujhe pata nahi tha. Usne humey second year se deal karte huye bhi dekha tha aur wo hairan thi ki mere aur Peter jaise log pehle din hi attention mein kaise aa gaye. Lekin Sneha ek baat ke liye kaafi Confuse thi ki Main waha bhut Weak lag raha tha un second Year walo ke saamne aur usne ye baat bhi notice kar li thi ki main Sunlight mein aate hi Weak behave karne lagta hu jaise sach mein Weak ho gaya hu.





TO BE CONTINUED...
Karan ko heal karne ke liye power bhi karan se hi leni Padhti hai system ko, sneha to karan ki identity janne ke liye uske pichhe hi pad gyi hai dekhte hai yah kya musibat lati hai karan ki jindgi me...
Vhi akash ka karan or Peter ke sath baithna or unke sath rahna high level valo ko raas nhi aaya Jisse 2nd year valo ne akash ko karan or Peter se dur rahne ko kaha... Akash ab vha se nikal uska pta Karna chahta hai jo karan or usko alag karna chahte hai... Karan ne Peter or akash ko apna dost samajh liya hai pr kya hoga jb pta chalega ki akash uske sath kyo hai kya maksad hai uska... Superb update bhai sandar jabarjast
 
Top