Recovery your account

Here you can find guides & tutorials about a multitude of different things, starting from BBCodes to gameplay related elements.
3 posts Page 1 of 1

Commander

User avatar
Commander
Donator
Posts: 4038
Joined: July 3, 2019, 11:18 am
Location: Egypt

Post by Commander » July 20, 2025, 3:04 pm
Recover your account password. However, if you still remember the email (Gmail or Yahoo) linked to your Lsrcr account...

Following steps

username: your in game name
Email address: yahoo or Gmail linked already
Then you may check your email you will get code then confirm it and the new password will be sent and change it to your own

That's it for In game account

Forum reset password and then change it to your own password




same as like in game steps you may write whether it is yahoo or gmail you will get code then you may login




If you lost yahoo/gmail you may contact senior admin in discord
Image

ackman Online

User avatar
[Lsrcr]Ackman
Game Administrator
Duel Master Event Host Blackmarket VIP
Posts: 5003
Joined: December 20, 2016, 7:25 am
Location: 696, Willowfield.

Post by ackman » July 22, 2025, 10:41 am
Code: Select all
import webbrowser
import time

def print_link(label, url):
    print(f"{label}: {url}")

def wait_for_user():
    input("\nPress Enter to continue...")

def recover_ingame_account():
    print("\n--- LSRCR In-Game Account Recovery ---")
    print("Step 1: Visit the following link to begin recovery.")
    print_link("Recovery Link", "https://ls-rcr.com/recover/?p=samp&method=email")
    
    print("\nProvide the following information:")
    print(" - Username: Your in-game name")
    print(" - Email: Your Gmail or Yahoo email linked to the account")

    wait_for_user()
    print("Step 2: Check your email. You will receive a code.")
    print("Step 3: Enter the code to confirm.")
    print("Step 4: A new password will be sent to your email.")
    print("Step 5: Use it to log in, then change the password to your own.")

def recover_forum_account():
    print("\n--- LSRCR Forum Account Recovery ---")
    print("Step 1: Visit the following link to reset your password.")
    print_link("Forum Password Reset", "https://ls-rcr.com/forum/app.php/user/forgot_password?sid=efd27b8a719f73a4f7d161788724ddff")

    print("\nFollow the same process as in-game:")
    print(" - Enter your Gmail or Yahoo email")
    print(" - Check your email for the code")
    print(" - Use the code to recover your account")

    wait_for_user()
    print("Step 2: Once logged in, change your password using this link:")
    print_link("Change Password", "https://ls-rcr.com/forum/ucp.php?i=ucp_profile&mode=reg_details")

    print_link("Forum Login Page", "https://ls-rcr.com/forum/")

def contact_admin():
    print("\n--- Contact Senior Admin ---")
    print("If you lost access to your Yahoo/Gmail, contact a senior admin on Discord:")
    print_link("Discord Server", "https://discord.gg/PDwe7GGwjC")

def main():
    print("Welcome to the LSRCR Account Recovery Assistant (Python Version)")
    print("Please choose what you want to recover:")
    print("1. In-Game Account")
    print("2. Forum Account")
    print("3. Contact Admin (Lost Email Access)")

    choice = input("\nEnter your choice (1/2/3): ").strip()

    if choice == "1":
        recover_ingame_account()
    elif choice == "2":
        recover_forum_account()
    elif choice == "3":
        contact_admin()
    else:
        print("Invalid choice. Exiting.")

    print("\nThank you. Good luck recovering your account!")

if __name__ == "__main__":
    main()
Image

Image
Image
About me:

Hello, I am Ackman and I am from Pakistan. I'm a part time Epic Gamer. Coming to the Criminal Career I'd like to mention that I am the founder of Blackouts group. It was founded on 19th of April, in 2017. Other than that, I am the leader of DreamTeam group. Coming to the LEO Career, I am currently serving the Army faction as a Major [MAJ].
Current memberships:
  • Blackouts
  • DreamTeam
  • Akatsuki
  • NCS
  • Saints
  • VLA
  • Durcrew
  • Beta Tester
  • [Lsrcr] tag.
Activity Status:
  • In-game: 6/10
  • TeamSpeak: 1/10
  • Discord: 9/10 (ackman #7476)
  • Forums: 5/10
OldSchool:
Spoiler: show

Sinwar

User avatar
[Lsrcr]Sinwar
Posts: 1317
Joined: June 21, 2019, 9:31 am

Post by Sinwar » May 28, 2026, 8:26 am
July 22, 2025, 10:41 amackman wrote:
Code: Select all
import webbrowser
import time

def print_link(label, url):
    print(f"{label}: {url}")

def wait_for_user():
    input("\nPress Enter to continue...")

def recover_ingame_account():
    print("\n--- LSRCR In-Game Account Recovery ---")
    print("Step 1: Visit the following link to begin recovery.")
    print_link("Recovery Link", "https://ls-rcr.com/recover/?p=samp&method=email")
    
    print("\nProvide the following information:")
    print(" - Username: Your in-game name")
    print(" - Email: Your Gmail or Yahoo email linked to the account")

    wait_for_user()
    print("Step 2: Check your email. You will receive a code.")
    print("Step 3: Enter the code to confirm.")
    print("Step 4: A new password will be sent to your email.")
    print("Step 5: Use it to log in, then change the password to your own.")

def recover_forum_account():
    print("\n--- LSRCR Forum Account Recovery ---")
    print("Step 1: Visit the following link to reset your password.")
    print_link("Forum Password Reset", "https://ls-rcr.com/forum/app.php/user/forgot_password?sid=efd27b8a719f73a4f7d161788724ddff")

    print("\nFollow the same process as in-game:")
    print(" - Enter your Gmail or Yahoo email")
    print(" - Check your email for the code")
    print(" - Use the code to recover your account")

    wait_for_user()
    print("Step 2: Once logged in, change your password using this link:")
    print_link("Change Password", "https://ls-rcr.com/forum/ucp.php?i=ucp_profile&mode=reg_details")

    print_link("Forum Login Page", "https://ls-rcr.com/forum/")

def contact_admin():
    print("\n--- Contact Senior Admin ---")
    print("If you lost access to your Yahoo/Gmail, contact a senior admin on Discord:")
    print_link("Discord Server", "https://discord.gg/PDwe7GGwjC")

def main():
    print("Welcome to the LSRCR Account Recovery Assistant (Python Version)")
    print("Please choose what you want to recover:")
    print("1. In-Game Account")
    print("2. Forum Account")
    print("3. Contact Admin (Lost Email Access)")

    choice = input("\nEnter your choice (1/2/3): ").strip()

    if choice == "1":
        recover_ingame_account()
    elif choice == "2":
        recover_forum_account()
    elif choice == "3":
        contact_admin()
    else:
        print("Invalid choice. Exiting.")

    print("\nThank you. Good luck recovering your account!")

if __name__ == "__main__":
    main()
Print("Hello World!")
Free Palestine
3 posts Page 1 of 1
Return to “Guides & Tutorials”

Who is online

Users browsing this forum: No registered users and 1 guest