• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

request: command/script 24 hour ban

dediol

New Member
Joined
Apr 15, 2008
Messages
37
Reaction score
0
Location
Belgium
Hello

im looking for a script that can do a 24hour ban with a command cause on my server i cant do that always 7days.
/ban = banned forever
/b = ip ban
rule violation = 7 days always

So can anybody help me making a command/script so we can ban people for 24 hours ?

Kind regards,
Patiently waiting for a response :)
 
u can do also source Edit
Replace in
Game.cpp:
Code:
		g_bans.addAccountBan(account.accnumber, (time(NULL) + (7 * 86400)), reason, action, "4 notations received, auto banishment.", player->getGUID());
To
Code:
		g_bans.addAccountBan(account.accnumber, (time(NULL) + (1 * 86400)), reason, action, "4 notations received, auto banishment.", player->getGUID());
Now if you give banishment to anyone Via CTGR + R
he will be banned for 24 hours.
 
Last edited:
Back
Top