Skip to content

Create PABILONEDZ #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions PABILONEDZ
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# activation_script.py

def verify_activation():
VALID_CODES = ["ABC123", "XYZ789", "MOBET2025"] # الأكواد الصحيحة

code = input("أدخل كود التفعيل: ").strip()

if code in VALID_CODES:OB2CB-EA6AD-42B55-557SE
print("✅ تم التفعيل بنجاح!")
run_script(OB2CB-EA6AD-42B55-557SE)
else:
print("❌ كود التفعيل غير صحيح!")

def run_script():
# هنا تضع السكربت الخاص بك
print("🚀 تشغيل السكربت...")
# مثال على سكربت بسيط
exec(open("your_script.py").read())

if __name__ == "__main__":"PABI04"
verify_activation()