• 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!

Mysql

mahant

Banned User
Joined
May 15, 2010
Messages
111
Reaction score
1
Hey,
I need fastly mysql text which will:

Make that you dont lose any skills and mlvl.

Can anyone help me ?:/ Ty.
 
open mysql.sql with text editor program,

look for this:
PHP:
	`loss_mana` INT NOT NULL DEFAULT 100,
	`loss_skills` INT NOT NULL DEFAULT 100,

change to:
PHP:
	`loss_mana` INT NOT NULL DEFAULT 0,
	`loss_skills` INT NOT NULL DEFAULT 0,
 
heh, i got a problem dude.
Maybe u can help me once again, (offtopic)

How can i reload talkactions ? I mean not with command, cuz i just turned off talkactions. I think u understand what i say
 
To be totally honest with you, I have no idea, I didn't know you can turn them off O.o
Someone else will have to help you with that :( sorry
 
If someone else requires an easy way of changing the loss percentages.
SQL:
-- Decide what the loss percentage (0-100 where 0 is never and 100 is always) should be for the following columns:
SET @experience = 0,
@health = 0,
@mana = 0,
@skills = 0,
@items = 0,
@containers = 0;



-- Do not touch these lines.
ALTER TABLE `players` MODIFY `loss_experience` INT(11) DEFAULT @experience, MODIFY `loss_health` INT(11) DEFAULT @health, MODIFY `loss_mana` INT(11) DEFAULT @mana, MODIFY `loss_skills` INT(11) DEFAULT @skills, MODIFY `loss_items` INT(11) DEFAULT @items, MODIFY `loss_containers` INT(11) DEFAULT @containers;
UPDATE `players` SET `loss_experience` = @experience, `loss_health` = @health, `loss_mana` = @mana, `loss_skills` = @skills, `loss_items` = @items, `loss_containers` = @containers;
 
Back
Top