homegaming-cs16rcon
v1.0.0
Published
Node.js ile HLDS CS 1.6 RCON komutları göndermek için basit bir kütüphane.
Maintainers
Readme
🎮 homegaming-cs16rcon
HLDS (Counter-Strike 1.6) RCON komutları göndermek için basit bir Node.js kütüphanesi.
🚀 Kurulum
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);
});