ShanBot!, Bot WhatsApp serba bisa Try Now!

Langkah Mudah untuk Menjalankan Server SA-MP 0.3.7 di VPS

Tutorial: Menjalankan Server SA-MP 0.3.7 di VPS

Ilustrasi Server VPS SA-MP

Di tutorial ini kita akan mengonfigurasi dan menjalankan SA-MP 0.3.7 server pada VPS Linux. Cocok untuk Anda yang ingin membuat server Roleplay, Freeroam, atau gamemode kustom lain dengan performa stabil.

1. Persiapan

  • VPS (CentOS/RHEL/Ubuntu) dengan akses root atau sudo.
  • Software: PuTTY (SSH), WinSCP / FileZilla (SFTP).
  • Gamemode & Plugins (.amx, .so).
  • Koneksi Internet yang stabil.

2. Update & Install Tools

sudo yum -y update
sudo yum -y install wget

3. Unduh & Ekstrak SA-MP Server

wget http://files.sa-mp.com/samp037svr_R2-1.tar.gz
tar -xzf samp037svr_R2-1.tar.gz

Pastikan folder samp03 berada di direktori home Anda.

4. Upload Gamemode & Plugins

Buka koneksi SFTP ke ~/samp03, lalu unggah:

  • Gamemode (.amx).
  • Plugins (.so, contoh: Streamer.so).
Contoh struktur folder SA-MP

5. Konfigurasi server.cfg

# Plugins
plugins MySQL Rcon Streamer.so

# Port & Player
port 7777
maxplayers 50

# Gamemode
gamemode0 mymode 1

6. Jalankan Server

cd ~/samp03
chmod +x samp03svr
nohup ./samp03svr &>/dev/null &

Server berjalan di IP_VPS:7777. Ganti port sesuai kebutuhan.

7. Troubleshooting

  • Periksa server.log di folder samp03.
  • Buka port UDP di firewall (contoh: firewall-cmd --add-port=7777/udp --permanent).
  • Gunakan ps aux | grep samp03svr untuk cek proses.

🎉 Selamat! Server SA-MP 0.3.7 Anda kini aktif. Tinggalkan komentar jika ada pertanyaan atau pengalaman yang ingin dibagikan.