Thread: Account Status
View Single Post
  #2  
Old 03-13-2017, 06:00 PM
ghanja's Avatar
ghanja
Dragon
 
Join Date: Aug 2012
Location: Hershey, PA
Posts: 499
Default

Code:
sub UpdateStatus { ## Usage: UpdateStatus($charid, xx) where xx is new status level
	my $dbh = plugin::MySQL_Connect();
	$dbh->do("UPDATE `account` SET `status` = '$_[1]' WHERE `id` = '$_[0]' ");
	$dbh->disconnect();
	$client->UpdateAdmin();
}
Reply With Quote