• 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 SOLO LEVELING

Story aapko kaisi lagi ?

  • Bahut achi lagi .

    Votes: 306 93.9%
  • Thik thak hi hai .

    Votes: 20 6.1%

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

Itachi_Uchiha

अंतःअस्ति प्रारंभः
Staff member
Sectional Moderator
7,835
27,239
204
Last edited:

Itachi_Uchiha

अंतःअस्ति प्रारंभः
Staff member
Sectional Moderator
7,835
27,239
204
Wow bhai domo update kamal ke the bhai.ab anil mar chika hain to jo use rewards milenge wo dekhna baki hain



Waiting for New Updates bhai
Haa bhai kuch to special milega apne hero ko. Aaj pata chl jayega aapko.
Sukriya Vipul bhai.
Keep supporting ☺️
 

Itachi_Uchiha

अंतःअस्ति प्रारंभः
Staff member
Sectional Moderator
7,835
27,239
204
Are rider bhai agai fight bich mai rah gayi so sad bro .......muje laga tha 2 update mai toh puri ho jayegi ye toh anyay kar diya reader ke sath........😔😔😔😔😔😔😔☹️☹️☹️☹️☹️☹️☹️☹️😰😰😰
Sandeep singh nirwan bhai lagta hai aapne thik se check nahi kiya is UPDATE ke thik niche next Update 33post kr diya tha. Maine kl hi taki fight puri ho jaye.
Koi ni aap aaj read kr lena.
 

Itachi_Uchiha

अंतःअस्ति प्रारंभः
Staff member
Sectional Moderator
7,835
27,239
204
Ha bhai mai Aapki baat se sahmat hu or enigma bhai ke alava bhi Bahut se best writer hai ek vj4u bhai, nain11star bhai, mahi bhai, anandshingh bhai, milan bhai, sudhanshu bhai, Lone bhai, werewolf bhai, AK bhai, Raj bhai or bhi Bahut se hai jinke naam yaad nhi aa rhe...
Aapne sahi kaha Xabhi bhai.
Mai bhi manta hu.
 

Sandeep singh nirwan

Jindgi na milegi dobara....
9,566
62,608
204
UPDATE - 33

No recap

AB AAGE...

Mai ( fighting position me anil ko dekhte hue dhire se kahta hu ) " Mai vastav me ek baar system ka aabhari hu. "
" Kuyuki Isne mujhe ek aur reason de diya hai ki, mai tumhe maar du. "

Runn..... Runn.....

SWOOSSS.....
TAKK......


Itna kah kr mai teji se bhagte hue, anil ke paas ja kr apne dagger se Attack krta hu.
Jise wo rok leta hai. Aur ek bhut tej chingari niklti hai.

Anil ( mera Attack rokte hue ) " A class ka jo ki dagger chlane aur agility me bahut hi jyada mahir hai. "
" Ek hatyare jo ki close range ka ek damage dealer hai. "
" Is hisab se, kya mai Tmhare liye sbse acha opponent nahi hu ? "

Mai " Haa, mai bhi tmse ab tk bahut kuch sikh cuka hu. "
" Jisme ek ye bhi sacchayi sammil hai ki fight ke time bolne wale log bekar hote hai.

DING.......

{ [ ALARM ! ]
[ SKILL : SPRINT ]
[ Activated ho cuka h ]
[ 1:- aapke movement ki speed 30percent increase ho jayegi. ]

[ 2:- 1MP hr ek min me consumed hoti rahegi. ] }

Runnn.... Runnn....

Aise hi hm fight kr rahe the. Fir mai apni SPRINT skill ko activate kr deta hu. Aur mai kabhi right se to kabhi left side se aa kr phle se bhi tej speed se Attack Krna lagta hu.
Meri increase hui speed ko dekh kr Anil bahut jyada shocked ho jata hai.

Anil ( shocked ho kr mujhe dekhte hue ) " Ye phle se bhi fast ho gaya hai ? "

Anil ( man me ) ' kya isne koi skills use kr raha hai ? '

Runnn.. runnn....

SWOOSSS......
Ahhhh....

Chuuuu......

Aur mai bahut teji se apne full speed me anil ke traf jata hu, aur apne dagger se uske left chick pr ek cut maar deta hu. Fir usase kuch piche ja kr mai ruk jata hu. Aur anil ko mud kr dekhne lagta hu.
Anil ko kuch samjh me nahi aata hai abhi kya hua uske sath. Lakin thoda dhyan dene ke baad use smjh aa jata hai uske sath kya huaa hai abhi.

DING.....

[ EFFECT : PARALYSIS has been activated. ]

DING....

[ EFFECT : BLEED has activated. ]
[ Aapke enemy ka helth 1percent her ek second me km hota rahega. ]

Ahhhhh......

Anil apne left chick pr lage cut ko feel kr hi raha tha ki use wo jagah pr koi movement feel nahi hoti hai. Aur fir achanak hi use bahut tej pain feel hone lagta hai.
Ye sb mere dagger ke karan hua tha. Kuch hi second me anil ke face ke left side ki sari nase aur aakho ka poison ke wajah se colour change ho jata hai. Aur uske aakho ke sath face ke left hisse bahut khatarnak dikhne lagta hai.

Anil ( apne man me ) ' poison ? '

Anil ( mujhe gusse se ghurte hue) " Acha to ye Tmhare dagger ke karan hua hai. "
" Ye sb dekh kr aisa lagta hai ki ye bhut se hi intrusting effect saamne wale me laa skta hai. "

Fir Anil apni aakhe band krke apna sir niche karke. Kud ko calm aur control krta hai.

DING.....

[ Enemy's ka resistance bahut jyada high hai.
Effect cancel ho raha hai. ]

Mai ( apne mn me ye notification dekh kr ) ' Jb tk opponent strong rahega ye effect us pr jyada der kaam nahi krega . '

Mai ( anil se ) " Bhut kuch "

Anil ( wapas se evil smile ke sath ) " Mujhe bhi ijajat do Tmhare hi jaisa kuch intrusting aur majedar dikhane ko. "

Aur itna khte khte hi, meri aakho ke samne hi uski body se jagah jagah se ek white color ka fog niklne lagta hai aur wo hawa me gayab ho jata hai.
Ye dekh kr mai buri tarah se shocked ho jata hu. Mere alawa thori dur pr khde Anjana aur rahul bhi ye dekh kr chuk jate hai.
Mai use apne chro taraf ghum ghum kr dundhne lagta hu

Mai ( apne man me) ' kya ? '
' wah kaha gaya ? '
' wo aise kaise gayab ho skta hai ? '

SWOOSSS.......
TADDDD........


Abhi mai ye sb soch hi raha tha ki mere left side se mujhe kuch sense hota hai aur mai turant hi udhar ghum kr apna dagger aage kr deta hu.
Aur maine bilkul sahi kiya tha. Quki wahi se anil ne mere upar Attack kiya tha. Jise maine rok liya tha.
Lakin Anil abhi bhi gayab hi tha. Tbhi mujhe anil ki aawaj sunayi deti hai.

Anil " Tmne such me mera Attack rok diya jbki maine meri presence chupa li hai. "
" Tmhari senses kuch jyada hi achi hai. "
"Quki maine skill STEALTH ko use kiya hai. "
" Maine apna shape, meri mehak, aawaj blki mera aura bhi sb kuch mita diya hai. Is skill ke use se. "
" Million me se koi ek hi assassin ye skill sikh pate hai. "
" Balki mai ye bhi kah skta hu ki koi bhi nahi janta ki mai ye STEALTH skill janta hu. "
" Iska reason ye hai ki.... Koi bhi jinda bacha hi nahi meri ye skill dekhne ke baad. "

JUUUPPPPPP.........

SWOOSSS......
Aaaahhhhh.......

Anil itna kahne ke baad chup ho jata hai. Aur achanak se gayab rahte hue hi mere piche se ujh pr attack kr deta hai.
Jb tk ki mai piche dekhta hu wo teji se mere left pair ko ek bahut bada cut marte hue waha se nikal cuka hota hai. Mai pain sebahut tej chillata hu.
Mere left pair me ek abhut bada cut bn gaya hota hai, aur usase bahut jyada blood nikalne lagta hai.
Mai kada nahi rah pata hu aur wahi pr gir jata hu. Uske baad me kud ke left pair ko dekhta hu. Jisase lagatar blood nikalta rahata hai.

Anil " Tumhara pair to bhut gambhir roop se injurd ho gaya hai. "
" Ye bahut jldi thik ho skta hai. Agr tmhe koi direct sidhe heal kre to. "
( Anjana ki taraf de kr jo ki mere se abhi kafi dur thi ) " lakin itni duriseto kewal basic healing spells hi kaam kr payengi. "

Anjana ( tention se ) " Rider !! "

Ye Kahte hue mere paas aane lagti hai. Tbhi anil apne upper body ko show krte hue hum dono ke bich me khada ho jata hai aur apna dagger Anjana ki taraf krke kahta hai. " Kuch bhi karne ki kosis mt karna aur jaha ho wahi khdi rahna. "
" Jb tmhara no. Aayega mai tb Tmhare paas aaunga. "

Ye dekh kr Anjana jaha thi wahi ruk jati hai. Wo bhut hi jyada dar gayi hoti h anil ki warning se.

Rahul ( Rider ko dekh kr man me ) ' Agr aisa hi sbchlta raha to Rider ka stamina sbse phle khtam ho jayega. '
' Mai bahar se bhi madad ke liye kisi ko bula nahi maang skta hu. '
' apne skills ke use se bhi mai rider ki help nahi kr skta. '
( Apni sword ks kr pakdte hue ) ' lakin mai kuch samay to nikal hi skta hu taki rider heald ho ske. '

Anil " kya tum ab bhi mere samne apne is body ke sath thik paoge. "
" Km se km tm ab us speed ko to nahi paa paoge jiske help se tum ab tk mujhse fight kr rahethe. "
( Mere left pair ko dekh ke ) " Aakhir tmko kitna minute lagega tmharr pair ka ghaww ko thik hone me. "

Mai ( gusse se ) " Tum .... "
" Bahut Bolte ho. "
"
Status recovery. "

ZIZZZZZZZ.........

Mere itna kahte hi mere body ko ek golden ray ne pura cover kr liya aur bs kuch second me mera pair bilkul thik ho gaya.
Ye dekh kr Anjana, rahul aur anil tino ke muh khule ke khule rah gaye aur wo aakhe fade bs mujhe thik hote dekh rahe the.

Anil ( apni aakhe dono fade mujhe thik hota de kr kud se ) " Ye to turant hi thik ho gaya. "
" Kya ye ek assassin to nahi rah cuka hai ? "
"
" Ek aisa huntur jo ki offence krta ho aur healing ke kuch mantr janta ho, kya aisa koi huntur such me is duniya me exists krta hai ? "

Mai thik ho kr waps se khada ho jata hu fir apne status recovery skill ke bare me sochte hue kud se kahta hu " Is par yakinan me bharosa kr skta hu. Lakin iski bhi ek limitations hai. Mujhe jldi hi dusre kisi solution ke bare me sochna hoga. "

Waha mai apne mind me kuch soch raha tha. Kaise ise harau. Wahi dusre side anil bhi gayab hue mere bare me bahut kuch soch raha tha.

Anil( apne man me ) ' Ek trick !! '
' ya ye iska koi fake confidence hai ?'
' aakhir kitni baar wo ye mantra use kr skta hai ? '
' mai nahi janta. '
' lakin ye khatarnak hai mujhe itna jarur pata hai. '

Itna soch kr Anil fir se mere upar Attack kr deta hai. Lakin mai ab use aaram se dekh paa raha tha. Quki maine apne mind ko bikul saant krke kuch point notice kr kiye the.

Mai ( anil ke attack ko dekh ke ) " fir se mera emotions me se ek emotion khtam ho gaya. Ye sb dekh kr. "
" Balki gussa Krna bhi tm jaise pgl, kamine ke upar bekar hai. "

SWOOSSS.......

Aur mere itna bolne tk anil mere bilkul paas aa gaya tha. Jiske Attack krne se phle hi mai uske nack pr Attack kr deta hu jise anil jukh kr bach to jata hai.
Lakin kud pr hue Attack se wo bahut jyada shocked ho jata hai.

Anil ( shocked ho kr apne man me ) ' isne mujhe ek baar fir se STEALTH skill ke bawjood dekh liya. '

Anil ( smile krte hue ) " Maine dekha jb tum mere neck pr Attack kr rahe the, tum ghabra bilkul bhi nahi rahe the. "
" Mai smjha gaya... "
" Aakhirkar mujhe hum dono ke bich ka real antar pata chl hi gaya. "
" Tumne phle bhi kisi human ko mara hai na. Hai ki nahi ? "
" Hahah !! Aakhir hum dono ek hi nasal ke hai. "

Ye sun ke Rahul mujhe dekhte hue sochne lagte hai ' smjha skta hu mai. '
' ki jine aur marne ke kai raste hote hai. '
' Isi liye rider ne kud se drdh nishchay kiya hoga apni kismat aur apni life ko change krne ke liye. '
' Isi liye ise bahut hi kam time me muskil faisle lene ke liye mujboor kiya gaya hoga. '
' aisa lagata hai ki iska roop hi iska ekamatr hissa nahin hai jo badal gaya hai . '
' aur bhi bahut kuchh change ho gaya hai isme. '

Fir Anil wapas se samne aa kr mujhse kahta hai.

Anil " REAWAKENING "
" Ek aisi uncaahi power jo ki society ke sare rules ko hi badal sakti hai. "
" Aur naye special rule hunturs ke liye bana sakte hai.
" Unhe law aur moral aur nahi rok sakte hai. "
" Strong logo ki kahi gayi bate hi law ban jati hai. "
" Isi liye mai apni puri power use krne ja raha hu. "

Run.... Run.....

SWOOSSS..... TAKK.....
SWOOSSS..... TAKK.....
Run.... Run.....
SWOOSSS..... TAKK.....
SWOOSSS..... TAKK.....
Run.... Run.....
SWOOSSS..... TAKK.....

SWOOSSS..... TAKK.....

Iske baad Anil wapas se gayab ho kr teji se mere taraf aata hai. Jbki mai bilkul saant apna sir niche ki or kiye hue ekdam relex khada rahta hu.
Phle aa kr wo mere pr ek Attack krta hai jisemai apne dagger se rok deta hai fir uske baad to anilbina ruke chro taraf se kabhi bhi mere upar Attack pr Attack krne hi lagta hai. Aur mai apne jagah sebina hile santi se uske sare Attack ko rokta rahta hu.
Anil apna pura jor aur dimak laga raha tha taki wo mujhe chakma de ske lakin uska hr Attack bekar tha.
Ye sb dekh kr Anil gusse se sochne lagta hai ' Haa !! Mere khyal se mai jaan gaya hu kaise mere gayab hone kebaad bhi wo mujhe dekh paa raha hai. '
' STEALTH meri presence ko to chupa de raha hai jb se ye activate hua hai. Lakin jb bhi mai high bloodlust se Attack krta hu tb friction of second ke liye meri presence exposed ho jati hai. '
' aur ye usi samay ka wait krta hai. '
' iske alawa aur koi tarika nahi hai ki wo kabhi bhi jaan sake mai aakhir kaha se Attack krne wala hu. '
' mujhe is flow ko break Krna hoga. '

Runnn... Runnnn......

Ye sb sochne kebaad Anil wapas se teji se meri taraf aata hai. Tabhi...

DING......

[ SKILL : BLOODLUST activate ho gaya hai. ]

Tbhi mai apna face utha kr Anil jaha se Attack krne wala tha waha dekhta hu.
Meri aakho ki putli bilkul white ho gayi thi.
Aur mujhe dekhte hi anil apni jagah pr turant hi ruk jata hai.
Anil meri aakho me dekhte hi dar se kapne lagta hai. Dar se wo Apne dato ko jor se bich leta hai.
Wo aage badhne ki kosis krta hai. Lakin wo kr nahi pata use lagta hai ki uske pair jam gaye hai ek hi jagah pr. Wo niche dekhta hai to use apne pairo ke niche daldal dikhayi deta hai jisme wo niche ko dhas raha hota hai.

Anil ( niche dekhte hue ) " ye kya hai ? "

Ye kaha aa gaya achanak se wo yahi dekhne ke liye. Wo apna sir utha kr upar ki traf dekhta hai.
Lakin jise hi wo upar dekhta hai uske muh se bs itna hi nikal pata hai.

Anil ( upar dekhte hue ) " kya ? "
" Ye kya hai ? "
" Ye jo darkness meri taraf aa rahi hai. Kya ye uski parchayi hai ? "

Anil aisa is liye kahta hai Quki meri bloodlust skill ke karan use upar do bahut badi white color ki evil aakhe dikhayi deti hai. Aur chro taraf andhera hi andhera rahta hai.
Aur wo aakhe dhire dhire anil ki hi taraf aa rahi thi. Aisa use lagta hai.

SWOOSSS.......
Aaaahhhhhh...........


Aur agle hi pal ek dagger aa kr sidha anil ke heart ke aar paar ho jata hai.
Ye dagger aur kisi ka nahi mera hi tha. Aur anil ko mai is time kisi ghost ki tarah dikh raha hota hu. Uske muh se bhi blood nikalne lagta hai.

Anil ( mujhe dekh ke ) " T....Tum Aakhir.... Ho kon ? "







To dosto aaj ke vaade ke mutabik dono post de diya hai.

Aaj ke liye bs itna hi dosto !!
Aapke review nd suggestions ka wait rahega comments ke through !!

Apna pyar aise hi banaye rakhiye !!
Bahut he shandaar sayad maine kal dhayan he nahi diya awesome update realy maza agaya dono ki fight dekh ke rider toh rider h wao bahut he shandaar tarike se fight describe kari
Awesome
 
Top