Is there any guide on how to add this to my source?
Release by Ind :
Index: src/char/char.c
===================================================================
--- src/char/char.c (revision 15859)
+++ src/char/char.c (working copy)
@@ -1366,6 +1366,13 @@
return -2; // character account limit exceeded
}
+ if( sd->group_id > 0 && sd->group_id < 99 ) {
+ if( SQL_ERROR == Sql_Query(sql_handle, "SELECT 1 FROM `%s` WHERE `account_id` = '%d'", char_db, sd->account_id) )
+ Sql_ShowDebug(sql_handle);
+ if( Sql_NumRows(sql_handle) >= 1 )
+ return -2; // character account limit exceeded
+ }
+
// check char slot
if( SQL_ERROR == Sql_Query(sql_handle, "SELECT 1 FROM `%s` WHERE `account_id` = '%d' AND `char_num` = '%d' LIMIT 1", char_db, sd->account_id, slot) )
Sql_ShowDebug(sql_handle);
Need this asap.