rename dir

This commit is contained in:
2023-08-11 18:28:54 +03:00
parent e359eb6f40
commit e5c7ff4a33
93 changed files with 86 additions and 127 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
if(!defined('GAME'))
{
die();
}
if( $u->info['clan'] == 0 ) {
$u->error = 'Вы не состоите в клане!';
}elseif( $itm['id'] > 0 ) {
$u->deleteItem($itm['id']);
mysql_query("UPDATE `clan` SET `exp`=`exp`+'50000' WHERE `id` = '".mysql_real_escape_string($u->info['clan'])."' LIMIT 1");
$u->error = 'Вы увеличили клановый опыт +50000';
}
?>