Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/08/24 in Posts

  1. is there a such thing as a character select script besides kicking (/kick) it from server? because i need the player to relog on a certain script that i've made, after availing premium user i need the character to char select to make the duration of buffs accurate. I'm not sure if im in the right forum to post or should i post this to script request hehehe
    1 point
  2. Since everything is hosted locally I was able to resolve this by adding an option in sql.ccp to disable ssl. Sql* Sql_Malloc(void) { Sql* self; CREATE(self, Sql, 1); mysql_init(&self->handle); StringBuf_Init(&self->buf); self->lengths = NULL; self->result = NULL; self->keepalive = INVALID_TIMER; my_bool reconnect = 1; int sslmode = 1; mysql_options(&self->handle, MYSQL_OPT_RECONNECT, &reconnect); mysql_options(&self->handle, MYSQL_OPT_SSL_MODE, &sslmode); return self; }
    1 point
×
×
  • Create New...