es
Feedback
๐—ก๐—ฅ ๐—–๐—ข๐——๐—˜๐—ซ ๐—•๐—ข๐—ง๐—ฆ โšก

๐—ก๐—ฅ ๐—–๐—ข๐——๐—˜๐—ซ ๐—•๐—ข๐—ง๐—ฆ โšก

Ir al canal en Telegram

NR CODEX BOTSโšก ๐Ÿš€ Welcome to NR CODEX BOTS ๐Ÿ”น What We Offer? Advanced Telegram Bots ๐Ÿค– AI-Powered Automation Tools โšก Tech and tools Bots ๐ŸŽฎ Custom Coding & Development ๐Ÿ’ป ๐ŸŒ Website: Coming Soon ๐Ÿ“ฉ Contact: @nilay_vii

Mostrar mรกs
1 046
Suscriptores
Sin datos24 horas
-257 dรญas
-6930 dรญas
Archivo de publicaciones
LIKE BOT FULL PACKAGE (OB50 Working) โœ… ๐Ÿ“ฅ Download Bot Code: ๐Ÿ”— LINK Password :- NR_LIKE_BOT ๐Ÿ› ๏ธ Download Like API (OB50): ๐Ÿ”— LINK Password :- NR_LIKE_API โ˜๏ธ Host Like Bot (24x7): ๐Ÿ”— LINK

JWT TOKEN GENERATOR API ๐Ÿ”ฅ RELEASE : OB1 - OB50 โšก FULL API ๐Ÿ”ฅ
https://jnl-gen-jwt.vercel.app/token?uid={uid}&password={password}
EXAMPLE ๐Ÿ”ฅ
https://jnl-gen-jwt.vercel.app/token?uid=3993678816&password=F57F259899377C1C25C2B8FB47C9790B859CA3FF3BA4F3D5EB7805FE5FB88EBA
{
  "credit": "@J4NIL_CODEX",
  "status": "live",
  "token": "eyJhbGciOiJIUzI1NiIsInN2ciI6IjEiLCJ0eXAiOiJKV1QifQ.eyJhY2NvdW50X2lkIjoxMjQ1OTA0NDY3Niwibmlja25hbWUiOiJXYXJtMVc5STd3OCIsIm5vdGlfcmVnaW9uIjoiQkQiLCJsb2NrX3JlZ2lvbiI6IkJEIiwiZXh0ZXJuYWxfaWQiOiI1YmZkM2EzZWRmMTI1YjNjMjZmNmNiNzkzOTdkNWJlNSIsImV4dGVybmFsX3R5cGUiOjQsInBsYXRfaWQiOjEsImNsaWVudF92ZXJzaW9uIjoiMS4xMDguMyIsImVtdWxhdG9yX3Njb3JlIjoxMDAsImlzX2VtdWxhdG9yIjp0cnVlLCJjb3VudHJ5X2NvZGUiOiJVUyIsImV4dGVybmFsX3VpZCI6Mzk5MzY3ODgxNiwicmVnX2F2YXRhciI6MTAyMDAwMDA3LCJzb3VyY2UiOjQsImxvY2tfcmVnaW9uX3RpbWUiOjE3NTA3NDk5NzIsImNsaWVudF90eXBlIjoyLCJzaWduYXR1cmVfbWQ1IjoiIiwidXNpbmdfdmVyc2lvbiI6MSwicmVsZWFzZV9jaGFubmVsIjoiM3JkX3BhcnR5IiwicmVsZWFzZV92ZXJzaW9uIjoiT0I1MCIsImV4cCI6MTc1MzkyNDE3OX0.x1u-4nt47NlC3FNJPn_-qd0B5e7PPkA7SD0e0ZTHRHc",
  "uid": "3993678816"
}
CREDIT @Gamer_49 CHANEL @TEAM_JENIL

REGION CHECK API (OB50 FIXED) โœ…
from flask import Flask, request, jsonify
import requests
import json

app = Flask(__name__)

def get_player_info(Id):
    url = "https://topup.pk/api/auth/player_id_login"

    headers = {
        "Accept": "application/json, text/plain, */*",
        "Accept-Encoding": "gzip, deflate, br, zstd",
        "Accept-Language": "en-MM,en-US;q=0.9,en;q=0.8",
        "Content-Type": "application/json",
        "Origin": "https://topup.pk",
        "Referer": "https://topup.pk/",
        "sec-ch-ua": '"Not)A;Brand";v="8", "Chromium";v="138", "Android WebView";v="138"',
        "sec-ch-ua-mobile": "?1",
        "sec-ch-ua-platform": '"Android"',
        "Sec-Fetch-Dest": "empty",
        "Sec-Fetch-Mode": "cors",
        "Sec-Fetch-Site": "same-origin",
        "User-Agent": "Mozilla/5.0 (Linux; Android 15; RMX5070 Build/UKQ1.231108.001) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.157 Mobile Safari/537.36",
        "X-Requested-With": "mark.via.gp",
        "Cookie": "source=mb; region=PK; mspid2=13c49fb51ece78886ebf7108a4907756; _fbp=fb.1.1753985808817.794945392376454660; language=en; datadome=WQaG3HalUB3PsGoSXY3TdcrSQextsSFwkOp1cqZtJ7Ax4YkiERHUgkgHlEAIccQO~w8dzTGM70D9SzaH7vymmEqOrVeX5pIsPVE22Uf3TDu6W3WG7j36ulnTg2DltRO7; session_key=hq02g63z3zjcumm76mafcooitj7nc79y",
    }

    payload = {
        "app_id": 100067,
        "login_id": f"{Id}",
    }

    try:
        response = requests.post(url, headers=headers, json=payload, timeout=15)
        response.raise_for_status()
        return response
    except requests.exceptions.HTTPError as errh:
        print(f"HTTP Error: {errh} - Response: {errh.response.text if errh.response is not None else 'No response body'}")
        return errh.response if errh.response is not None else requests.Response()
    except requests.exceptions.ConnectionError as errc:
        print(f"Error Connecting: {errc}")
        return requests.Response()
    except requests.exceptions.Timeout as errt:
        print(f"Timeout Error: {errt}")
        return requests.Response()
    except requests.exceptions.RequestException as err:
        print(f"An unexpected request error occurred: {err}")
        return requests.Response()

@app.route('/region', methods=['GET'])
def region():
    uid = request.args.get('uid')
    if not uid:
        return jsonify({"message": "Please provide a UID"}), 200

    response = get_player_info(uid)

    try:
        if response.status_code == 200:
            original_response = response.json()
            
            if not original_response.get('nickname') and not original_response.get('region'):
                if original_response.get('error') == 'error_player_id_invalid':
                    return jsonify({"message": "UID not found, please check the UID (Error: Player ID invalid)"}), 200
                return jsonify({"message": "UID not found, please check the UID"}), 200
            
            return jsonify({
                "uid": uid,
                "nickname": original_response.get('nickname', ''),
                "region": original_response.get('region', '')
            })
        else:
            return jsonify({
                "message": f"Failed to retrieve UID info. Upstream API returned status {response.status_code}. Please check the UID or try again later.",
                "upstream_response": response.text
            }), 200
    except requests.exceptions.JSONDecodeError:
        return jsonify({"message": "Error: Upstream API returned non-JSON response. UID might not be found or API structure changed."}), 200
    except Exception as e:
        return jsonify({"message": f"An unexpected error occurred: {str(e)}. UID might not be found."}), 200

if __name__ == '__main__':
    app.run(host='0.0.0.0', port=5000, debug=True)
Example:
http://127.0.0.1:5000/region?uid=2263549557
JSON Response:
{
  "uid": "2263549557",
  "nickname": "N1L-UXใ…คแต‰หฃแต‰",
  "region": "IND"
}
Credit: @nilay_vii Join Telegram: @nr_codex

LIKE API:
https://eg-free-likeapi-1.vercel.app/like?uid={uid}&server_name={region}&key={key}
RESPONSE:
https://eg-free-likeapi-1.vercel.app/like?uid=2204456774&server_name=ind&key=ENDxDANGER
SUPPORTED REGION:
ind
API KEY: ENDxDANGER
RESPONSE
{ "LikesGivenByAPI": 100, "LikesafterCommand": 5307, "LikesbeforeCommand": 5407, "PlayerNickname": "Z4X๏พ MAXX", "UID": 2204456774, "status": 2 }
SOURCE CODE CREDIT: @DANGER_FF_LIKE CREDIT: @ENDING_GAMER_77

๐ŸŽ‚ Today is my Birthday! ๐Ÿ’ To celebrate, I've collab with @GAMIGO_YT and launched a special bot: @unique_profile_bot ๐Ÿ’ฅ For today only โ€“ it's completely FREE! โœ… No verification required ๐Ÿšซ No forced channel joins Just enjoy and create your unique profile! ๐ŸŽฅ Tutorial video: Click here

Direct number to adhar card bot ๐Ÿ˜Ž NUMBER_DETAILSFREE_BOT Join for my link to get 2 point extra โค๏ธ #first time in tg ๐ŸŒŸ

For any proxy server giveaway join this group https://t.me/devproxychat It will give you free proxy server giveaway and tips.

FF FREE INFO API ๐Ÿ” WITHOUT NEED REGION ๐ŸŒŽ INFO API:
https://nr-codex-info.vercel.app/get?uid={uid}
Example:
https://nr-codex-info.vercel.app/get?uid=2263549557
Response:
{
  "AccountInfo": {
    "AccountAvatarId": 902000047,
    "AccountBPBadges": 80,
    "AccountBPID": 1001000086,
    "AccountBannerId": 901000014,
    "AccountCreateTime": "1597138127",
    "AccountEXP": 1747657,
    "AccountLastLogin": "1752809403",
    "AccountLevel": 65,
    "AccountLikes": 91847,
    "AccountName": "N1L-UXใ…คแต‰หฃแต‰",
    "AccountRegion": "IND",
    "AccountSeasonId": 46,
    "AccountType": 1,
    "BrMaxRank": 321,
    "BrRankPoint": 3648,
    "CsMaxRank": 322,
    "CsRankPoint": 123,
    "EquippedWeapon": [907102308, 912049002],
    "ReleaseVersion": "OB49",
    "ShowBrRank": true,
    "ShowCsRank": true,
    "Title": null
  },
  "AccountProfileInfo": {
    "EquippedOutfit": [214000053, 204000105, 205000101, 203000814, 211000087, 211000017],
    "EquippedSkills": [16, 22016, 8, 1, 16, 1106, 8, 2, 16, 4506, 8, 3, 16, 2506]
  },
  "GuildInfo": {
    "GuildCapacity": 25,
    "GuildID": "3042959265",
    "GuildLevel": 2,
    "GuildMember": 4,
    "GuildName": "ฦฌสœแด‡ใ…คฦคแด€ส€แด€แด…ษช๊œฑแด‡",
    "GuildOwner": "2263549557"
  },
  "captainBasicInfo": {
    "accountId": "2263549557",
    "accountPrefers": {
      "brPregameShowChoices": [1]
    },
    "accountType": 1,
    "badgeCnt": 80,
    "badgeId": 1001000086,
    "bannerId": 901000014,
    "createAt": "1597138127",
    "csMaxRank": 322,
    "csRank": 322,
    "csRankingPoints": 123,
    "exp": 1747657,
    "externalIconInfo": {
      "showType": "ExternalIconShowType_FRIEND",
      "status": "ExternalIconStatus_NOT_IN_USE"
    },
    "headPic": 902000047,
    "lastLoginAt": "1752809403",
    "level": 65,
    "liked": 91847,
    "maxRank": 321,
    "nickname": "N1L-UXใ…คแต‰หฃแต‰",
    "rank": 321,
    "rankingPoints": 3648,
    "region": "IND",
    "releaseVersion": "OB49",
    "seasonId": 46,
    "showBrRank": true,
    "showCsRank": true,
    "showRank": true,
    "weaponSkinShows": [907102308, 912049002]
  },
  "creditScoreInfo": {
    "creditScore": 100,
    "periodicSummaryEndTime": "1752594357",
    "rewardState": "REWARD_STATE_UNCLAIMED"
  },
  "petInfo": {
    "exp": 540,
    "id": 1300000111,
    "isSelected": true,
    "level": 4,
    "selectedSkillId": 1315000020,
    "skinId": 1310000112
  },
  "socialinfo": {
    "accountId": "2263549557",
    "language": "Language_BENGALI",
    "rankShow": "RankShow_BR",
    "signature": "[b][c][FF1493]Love is Mahi[00FF00]Get 100 likes every day without any hassle.[87CEEB]Join our platform on:[1E90FF]1.Telegramโ€“[FFFFFF]NR_CODEX[FF0000]2.YouTubeโ€“[FFFFFF]NR_CODEX06[FF8C00]Here you get all types of tools for help!"
  }
CREDIT: @Nilay_vii WORKING ON ๐Ÿ‡ฎ๐Ÿ‡ณ IND | ๐Ÿ‡ฎ๐Ÿ‡ฉ ID | ๐Ÿ‡ง๐Ÿ‡ท BR | ๐ŸŒŽ ME | ๐Ÿ‡ป๐Ÿ‡ณ VN | ๐Ÿ‡น๐Ÿ‡ญ TH | CIS | ๐Ÿ‡ง๐Ÿ‡ฉ BD | ๐Ÿ‡ต๐Ÿ‡ฐ PK | ๐Ÿ‡ธ๐Ÿ‡ฌ SG | ๐Ÿ‡บ๐Ÿ‡ธ NA | ๐ŸŒŽ SAC | ๐Ÿ‡ช๐Ÿ‡บ EU | ๐Ÿ‡น๐Ÿ‡ผ TW ALMOST ALL REGION

No matter what happens, Iโ€™m always prepared โ€” I always have a backup plan โ˜ .

INDIA SERVER ISSUE โ€” FIX
The IND API server now only allows requests from India (region-locked).
Two working solutions i know:
1) If you're using Vercel: Update your
vercel.json to:
{
"builds": [
{ "src": "main.py", "use": "@vercel/python" }
],
"routes": [
{ "src": "/(.*)", "dest": "main.py" }
],
"regions": ["bom1"]
}
"bom1" = Mumbai (India region) "main.py" = your main Python file
2) Use a VPS With either setup, the IND API should now work without errors.
Questions? Feel free to ask in comment.

๐Ÿ† GUILD GIVEAWAY ๐Ÿš€ INDIA SERVER GUILD ๐Ÿ‡ฎ๐Ÿ‡ณ LEVEL :- 5 MEMBERS 50 UNLOCK ๐Ÿ”“ GUILD NAME ๐Ÿ“› ๏ผง๏ผฏ๏ผคโ™จ๏ผฌ๏ผฅ๏ผถ๏ผฅ๏ผฌเฟ โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” ๐Ÿ“Œ How to Participate 1๏ธโƒฃ Join: @nr_codex 2๏ธโƒฃ Join: NR CODEX BOTS โšก 3๏ธโƒฃ Get votes from the community! ๐Ÿ”น Minimum 50 votes required to qualify โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” โšก Voting System ๐Ÿ… Top 3 will qualify for the Final ๐Ÿฅ‡ Winners decided by community votes! โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” โณ Timeline ๐Ÿ“… Entry Open: 11th July ๐Ÿ† Winners Announced: 16th July โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” ๐Ÿ”— Enter Now ๐Ÿ‘‰ DM: Nilay_vii ๐ŸŽ Bonus Offers ๐Ÿ’Ž Most innovative bot will be featured in our channel! โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” โš ๏ธ Rules (Strictly Follow) ๐Ÿšซ No fake votes ๐Ÿšซ No multi-accounting โœ… All entries will be manually verified โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” ๐Ÿ”ฅ Don't miss your chance to shine! ๐Ÿ’ฌ #GuildGiveaway #FreeFire #FFMAX #NRCodex

Need a powerful AI For Help and write codes ๐Ÿ˜„ Use this AI It's help you to write code with proper files and many more just try ๐Ÿ˜ธ

๐Ÿš€ NEW FEATURES LIVE โ€“ JWT GENERATOR BOT UPGRADED! ๐ŸŽ‰ Say hello to update jwt token generation! V2 ๐Ÿ› ๏ธ Weโ€™ve just added exclu
๐Ÿš€ NEW FEATURES LIVE โ€“ JWT GENERATOR BOT UPGRADED! ๐ŸŽ‰ Say hello to update jwt token generation! V2 ๐Ÿ› ๏ธ Weโ€™ve just added exclusive new features to JWT GENERATE BOT, including: โœ… Direct GitHub Token Upload โžค Instantly update your tokens to GitHub โ€“ straight from Telegram! No extra tools or scripts needed. โœ… Speed Boost โžค Token generation is now blazing fast โ€“ ultra-optimized with high concurrency. โœ… And add many more features go and check out ๐Ÿ˜บ ๐Ÿ” Secure GitHub Integration โžค Full remote control repo and update location. (With a warning prompt before uploading โ€“ your token, your responsibility!) ๐Ÿ’ก And more powerful tools are on the way! ๐Ÿ“Œ Try it now: JWT GENERATE ๐Ÿ› ๏ธ Update by NR CODEX Team Stay tuned โ€“ this is just the beginning. โšก And if any problem contact team NR CODEX BOTSโšก.

Guy's Soโ€ฆ you really want me to turn on the JWT Generator?
Anonymous voting

๐Ÿšจ Official Announcement from NR CODEX We have launched our new support bot: SUPPORT BOT ๐Ÿค– @nr_codex_support_bot From now on, if you have any issues, questions, need help, or want to make a purchase โ€” please contact and message this bot only. This is the official support bot of NR CODEX. โš ๏ธ Please do not DM me personally on: โžค @nilay_vii โžค @nilay_ok Use the support bot for all communication going forward. Thank you for understanding ๐Ÿ’

Guys HOW TO MAKE FF TELEGRAM LIKE BOT | EASY WAY TO MAKE LIKE BOT ๐Ÿ”ฅ| FF LIKE BOT TUTORIAL Watch The Full Videos Carefully! โœ… https://youtu.be/eAY_K7aRM0k โ€ข Code Credit goes to Madara โ€ข Bot Source Code: Click here โ€ข GitHub : Click here โ€ข Render : Click here โ€ข Uptime robot : Click here

Attention Please guy's ๐Ÿ˜ข My all bot Host on render but today render suspend my all bot hosting so wait for next update ๐Ÿ˜”
Attention Please guy's ๐Ÿ˜ข My all bot Host on render but today render suspend my all bot hosting so wait for next update ๐Ÿ˜”

๐Ÿฆ‹ WELCOME TO HYPER xKEN WEBโ˜„๏ธ 1. ๐Ÿช BENEFITS โ€“ No red page issues ๐Ÿ–ค 2. PRIVATE VIP THEMES โ€“ Exclusive and stylish themes. 3. SUPERFAST LOADING SPEED โ€“ Experience lightning-fast browsing. 4. NO DATA LEAK ๐Ÿ˜Š๐Ÿ˜‡ โ€“ Your privacy is our priority. 5. REAL-TIME DATA ON BOT โ€“ Get instant updates. 6. 24/7 CUSTOMER SUPPORT โ€“ Always here to assist you. ๐Ÿ’ฐ PRICE: FREE โ€“ Enjoy without any cost! ๐Ÿ˜Š ๐Ÿ‘‘ VIP PRICE: CURRENTLY FREE ๐Ÿ”— REGISTER NOW: https://ff-game-unreal.shop/register.php ๐Ÿ’ฌ ANY ISSUES? DM ME HERE: @MRAZAD0777 Channel: @hyper_free_apis Web BOT: http://t.me/KEN_WEBS_BOT ๐Ÿ‘‘ SUPPORT & SHARE GUYS! ๐Ÿฆ‹