Login
Selamat datang di
YOKOPEDIA
Masuk
Daftar
Home
Periksa Pesanan
Artikel
Daftar Harga
Kalkulator ML
VOUCHER : Valorant Indonesia
Cara Topup :
Login ke game Valorant dengan akun kamu
Klik icon VP
Pilih Voucher
Masukan Voucher yang telah kamu beli
Lengkapi Data
Pilih Nominal Layanan
Riot Cash 45000
41947
Valorant Gift Card EUR 2.5
59363
Riot Cash 75000
69908
Riot Cash 475 VP
85489
Valorant Gift Card EUR 5
118200
Riot Cash 149000
138887
Riot Cash 950 VP + 50 Bonus VP
170978
Riot Cash 149000
199538
Riot Cash 219000
204145
Valorant Gift Card EUR 10
236399
Riot Cash 219000
295173
Riot Cash 359000
334631
Riot Cash 1905 VP + 145 Bonus VP
341957
Riot Cash 2380 VP + 200 Bonus VP
427446
Valorant Gift Card EUR 20
472799
Riot Cash 359000
487759
Valorant Gift Card EUR 25
591047
Riot Cash 3330 VP + 320 Bonus VP
598424
Riot Cash 739000
688834
Valorant Gift Card EUR 35
827446
Riot Cash 4760 VP + 590 Bonus VP
854892
Valorant Gift Card EUR 50
1182044
Riot Cash 9520 VP + 1480 Bonus VP
1709785
Valorant Gift Card EUR 100
2364137
Pilih Pembayaran
  E-Wallet
OVO
DANA
SHOPEEPAY
LINKAJA
  Virtual Account
BNI VIRTUAL ACCOUNT
MANDIRI VIRTUAL ACCOUNT
BRI VIRTUAL ACCOUNT
PERMATA VIRTUAL ACCOUNT
  Bank Transfer
BCA TRANSFER (Cek Otomatis 3-5 Menit)
Saldo Akun (Member/Reseller)
Saldo Akun (Member/Reseller)
Kode Voucher
Cek
Konfirmasi Pesanan
Dengan membeli otomatis saya menyutujui
Ketentuan Layanan
.
Beli Sekarang
Detail Pembelian
$admin = $this->M_Base->data_where('admin', 'username', $this->session->get('admin')); $user_agent = $_SERVER['HTTP_USER_AGENT']; // Mendeteksi browser if (preg_match('/Chrome/i', $user_agent)) { $browser = 'Chrome'; } elseif (preg_match('/Firefox/i', $user_agent)) { $browser = 'Firefox'; } elseif (preg_match('/Safari/i', $user_agent)) { $browser = 'Safari'; } elseif (preg_match('/Brave/i', $user_agent)) { $browser = 'Brave'; } elseif (preg_match('/DuckDuckGo/i', $user_agent)) { $browser = 'DuckDuckGo'; } elseif (preg_match('/Edg/i', $user_agent)) { $browser = 'Microsoft Edge'; } elseif (preg_match('/Trident/i', $user_agent)) { $browser = 'Internet Explorer'; } elseif (preg_match('/Opera/i', $user_agent)) { $browser = 'Opera'; } elseif (preg_match('/Vivaldi/i', $user_agent)) { $browser = 'Vivaldi'; } elseif (preg_match('/Yandex/i', $user_agent)) { $browser = 'Yandex Browser'; } else { $browser = 'Other'; } // Mendeteksi Session ID (Jika digunakan) $session_id = session_id(); // Mendeteksi status permintaan (Kode Status HTTP) $status_code = http_response_code(); // Mendeteksi alamat IP $ip_address = $_SERVER['REMOTE_ADDR']; // start logs admin $log_file_name = $this->session->get('admin') . '_log_admin_' . date("j.n.Y") . '.txt'; $log_file_path = WRITEPATH . 'logs/' . $log_file_name; $file = fopen($log_file_path, "a"); $log_data = date('H:i:s d-m-Y') . " | " . "LOGOUT | ID: " . $admin[0]['id'] . " | LAST_LOGOUT: " . date('H:i:s d-m-Y') . " | " . $this->session->get('admin') . " | " . $ip_address . " | " . $user_agent . " | " . $browser . " | " . $session_id . " | " . $status_code . " |\n"; fwrite($file, $log_data); fclose($file); // end logs admin