Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/16/20 in all areas

  1. Need the latest kRO Install folder for your private server? Look no further! ----> Download <---- Latest: 2023-04-04 Installation: Official kRO Updated: 04/04/2023 Download Link: https://mega.nz/folder/jUsDgRxQ#ttLmLjPY9p9cfU5_ShWVCw Package contains RSU RO Patcher Lite for kRO and kRO RE by [Ai4rei] This package is maintained by [Akkarin] Note: Due to continued abuse of my webservers, the files have been moved to MEGA. You can download an extractable .zip of an installed kRO directory, or you can download the official installer from kRO's website. Note: If you require older maps that are compatible with 2021 and older clients, download the 2021 .zip. A fan of this topic? Hit the rep button
    1 point
  2. prontera,155,181,5 script SavePointNPC 4_F_KAFRA1,{ getmapxy(.@map$, .@x, .@y, BL_NPC); savepoint .@map$, .@x, .@y; mes "Save point updated to "+.@map$+"("+.@x+", "+.@y+")"; close; } prontera,155,181,5 duplicate(SavePointNPC) SavePointNPC#1 4_F_KAFRA1 prontera,155,181,5 duplicate(SavePointNPC) SavePointNPC#2 4_F_KAFRA1 prontera,155,181,5 duplicate(SavePointNPC) SavePointNPC#3 4_F_KAFRA1
    1 point
  3. Boa noite amigo, em geral esses tipos de configurações são feitas na pasta "conf" Abre todos e da uma olhada em geral
    1 point
  4. Version 1.0.0

    116 downloads

    sqlbackup A super simple and lightweight SQL Database Backup System. This auto backsup your database every 24 Hours or more. Can't go less. Requirements - NodeJS v12+ - Understanding Installation - Download the Code. (can use git) - Go to the main directory of the code using your terminal/cmd. (Where index.js is) // run $ node . // or $ node index How to run this 24/7? This will close when you close your terminal. I good way to keep this up without closing is using `pm2`. To install `pm2`, simply do the following. $ npm install pm2 -g // or $ yarn add pm2 -g How would i run it? $ pm2 start index.js (Make sure you're in the main directory of the code. Where index.js is) That would make it run 24/7 even when closing the terminal/cmd. Config Defaults: { "mysql": { "username": "username", "password": "password", "host": "localhost", "port": 3306, "databases": [ "rathena4444_rag", "rathena4444_log" ] }, "backupInterval": 86400 } config.mysql is where all your mysql data would be. *.username is what your mysql username is. *.password is the password for your mysql username. *.host is where the mysql server is hosted. 127.0.0.1 or localhost for the same host or vps. *.port is the port of the mysql host. *.databases[] an array of the name of the databases to backup. config.backupInterval is the amount of seconds to wait before creating a new backup. Default is 86400 (1 day). Take note that you can't go less than 86400. How does this work? I simply used child_process to create a new process and would run mysqldump to export Mysql databases. After exporting, the code closes the process of the ran command and then would wait for the interval to be finished, then repeat the process.
    Free
    1 point
×
×
  • Create New...