UNPKG

homegaming-cs16rcon

Version:

Node.js ile HLDS CS 1.6 RCON komutları göndermek için basit bir kütüphane.

20 lines (15 loc) 525 B
# 🎮 homegaming-cs16rcon **HLDS (Counter-Strike 1.6) RCON komutları** göndermek için basit bir Node.js kütüphanesi. ## 🚀 Kurulum ```bash npm install homegaming-cs16rcon # Kullanım Örneği ```js const { sendCommand } = require('homegaming-cs16rcon'); sendCommand('your_server_ip', 27015, 'your_server_rcon_password', 'command_that_you_will_send') .then((cevap) => { console.log('✅ Sunucu cevabı:', cevap); }) .catch((err) => { console.error('❌ Hata:', err.message); });