INITIALIZING ORYZA PROTOCOL...
GUEST

CARA KERJA

Langkah 1: Login/Register

Buat akun atau login ke dashboard.

Langkah 2: Pilih Durasi & Validator

Pilih validator software, tentukan durasi sewa (1-100 hari), hitung total harga secara otomatis.

Langkah 3: Kirim HWID & Bayar

Input HWID perangkat Anda, pilih metode bayar (BTC/USDT/Bank), upload bukti transfer.

Langkah 4: Terima License & File

Approve dalam 1-24 jam. Terima license key + file download via dashboard.

PERTANYAAN YANG SERING DIAJUKAN

Apa itu HWID?
Hardware ID adalah unik identifier perangkat Anda (CPU + Motherboard hash) untuk verifikasi license. Gunakan tool CLI kami untuk mendapatkan HWID.
Berapa lama proses approve?
Biasanya 1-24 jam setelah bukti bayar valid. Cek dashboard untuk update real-time.
Apa yang terjadi jika License expired?
Software akan secara otomatis tidak akan bekerja
Support pembayaran apa saja?
Bitcoin (BTC), USDT (TRC20/BEP20), Transfer Bank BCA. Rate real-time dari CoinGecko.

Cara Mendapatkan HWID

Download tool CLI resmi kami untuk HWID dengan cepat

Download CLI Tool untuk HWID

SYSTEM_REQ

  • Python 3.6 atau lebih tinggi
  • Required Python packages (listed in requirements.txt)

INSTALLATION

  1. Install Python 3.6+ dari python.org
  2. Download & extract file aplikasi ke folder pilihan
  3. Buka terminal/command prompt di folder aplikasi
  4. Install packages: pip install -r requirements.txt

HOW_TO_USE

Jalankan script untuk generate HWID. Copy hasilnya ke form rental.

# hwid.py - Official Oryza HWID Tool
import uuid
import os

ROOT_DIR = os.path.abspath(os.getcwd())

def save_hwid(hwid):
    try:
        with open(os.path.join(ROOT_DIR, "hwid.txt"), "w") as f:
            f.write(f"Your HWID: {hwid}\nPlease send this HWID to t.me/garudasmith to order a license.\n")
        print(f"[SUCCESS] HWID saved successfully to {os.path.join(ROOT_DIR, 'hwid.txt')}.")
        return True
    except Exception as e:
        print(f"[ERROR] Failed to save HWID: {e}")
        return False

def main():
    hwid = str(uuid.getnode())
    print(f"[INFO] Your HWID: {hwid}")
   
    if save_hwid(hwid):
        print(f"[INFO] hwid.txt file has been created in directory: {ROOT_DIR}")
    else:
        print("[ERROR] Save process failed. Check directory access permissions.")

if __name__ == "__main__":
    main()

Requirements.txt: psutil==5.9.0 (install via pip).