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

Players Reach 0 Life but dont die by players

korff

New Member
Joined
Sep 11, 2009
Messages
78
Reaction score
3
Im my server

When you atk someone, the ppl you atack will reach 0 of life, but dont die, only for mobs...

Why this happen some1 can help me?
 
I found a way to fix this, when you open the server change /mode to pvpe than change it again to pvp and its fixed ;).

I still can't find a fix for it though.. :/
 
I'm having the same problem, but the monsters of my ot, are with 0 life and not die, and the players, they die but not drops any items ..
 
nothing of all that i will help you but rep++ please i need some Reputation

add those to your phpmyadmin

Code:
ALTER TABLE `guilds` 
ADD `invited_to` INT( 11 ) NOT NULL ,
ADD `invited_by` INT( 11 ) NOT NULL ,
ADD `in_war_with` INT( 11 ) NOT NULL ,
ADD `kills` INT( 11 ) NOT NULL ,
ADD `show` SMALLINT( 1 ) NOT NULL ,
ADD `war_time` INT( 11 ) NOT NULL ;

Code:
 CREATE TABLE `deaths_in_wars` (
`guild_id` INT( 11 ) NOT NULL ,
`player_id` INT( 11 ) NOT NULL ,
`killer_guild` INT( 11 ) NOT NULL ,
`killer` INT( 11 ) NOT NULL ,
`date` INT( 11 ) NOT NULL ,
`result1` INT( 11 ) NOT NULL ,
`result2` INT( 11 ) NOT NULL 
) ENGINE = MYISAM ;

Code:
  UPDATE `guilds` SET `invited_to` = 0, `invited_by` = 0, `in_war_with` = 0, `kills` = 0, `show` = 0, `war_time` = 0 WHERE `id` > 0;

and if u use Sqlite

Then add Those:

Code:
ALTER TABLE "guilds"
ADD (   "invited_to" INTEGER NOT NULL,
	"invited_by" INTEGER NOT NULL,
	"in_war_with" INTEGER NOT NULL,
	"kills" INTEGER NOT NULL,
	"show" TINYINT NOT NULL,
	"war_time" INTEGER NOT NULL);

CREATE TABLE "deaths_in_wars" (
	"guild_id" INTEGER NOT NULL,
	"player_id" INTEGER NOT NULL,
	"killer_guild" INTEGER NOT NULL,
	"killer" INTEGER NOT NULL,
	"date" INTEGER NOT NULL,
	"result1" INTEGER NOT NULL,
	"result2" INTEGER NOT NULL
);

UPDATE "guilds" SET "invited_to" = 0, "invited_by" = 0, "in_war_with" = 0, "kills" = 0, "show" = 0, "war_time" = 0 WHERE "id" > 0;



then server will work fine Rep++ if helped
 
You're war system is working pretty bad...

I suggest you delete the war system and try to find some other war system taht works good...


here's a good one
http://otland.net/f81/fixed-guild-w...not-count-frags-forgotten-server-0-3-a-32157/







Or try to import


Code:
ALTER TABLE "guilds"
ADD (   "invited_to" INTEGER NOT NULL,
	"invited_by" INTEGER NOT NULL,
	"in_war_with" INTEGER NOT NULL,
	"kills" INTEGER NOT NULL,
	"show" TINYINT NOT NULL,
	"war_time" INTEGER NOT NULL);

CREATE TABLE "deaths_in_wars" (
	"guild_id" INTEGER NOT NULL,
	"player_id" INTEGER NOT NULL,
	"killer_guild" INTEGER NOT NULL,
	"killer" INTEGER NOT NULL,
	"date" INTEGER NOT NULL,
	"result1" INTEGER NOT NULL,
	"result2" INTEGER NOT NULL
);

UPDATE "guilds" SET "invited_to" = 0, "invited_by" = 0, "in_war_with" = 0, "kills" = 0, "show" = 0, "war_time" = 0 WHERE "id" > 0;
 
Back
Top