• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Delete Character Modern ACC

Chanofmp94

New Member
Joined
Jan 5, 2014
Messages
5
Reaction score
0
Hello everyone!

I have a big big problema, i need your support, please someone so intelligent to help me.
In my web page by modern acc, and well i can make new characters but when i try to delete it, the page ask me if im sure and then i accept, but there's not working, the character is still created.

Exactly i use trunk.r267...

THANKS TO EVERYONE!
 
Problem*

Buump! Please someone!

i don't know where's the code on my modern acc but in application/controllers/account i have this:

function deletePlayer($id) {
$ide = new IDE;
$ide->requireLogin();
if(empty($id)) $ide->redirect(WEBSITE."/index.php/account");
$this->load->model("account_model");
if(!$this->account_model->isUserPlayer($id)) $ide->redirect(WEBSITE."/index.php/account");
$this->account_model->deletePlayer($id);
$ide->redirect(WEBSITE."/index.php/account");
}
 
Back
Top