essa e uma jobs confg para premiar os top 3 na web ferrarezi:

DECLARE @exist varchar(10)
SET @exist = 'NOT'

DECLARE @AccountID1 varchar(10)
DECLARE @AccountID2 varchar(10)
DECLARE @AccountID3 varchar(10)

declare @Name varchar(10)
declare @Name2 varchar(10)
declare @Name3 varchar(10)

declare @Valor1 int
declare @Valor2 int
declare @Valor3 int

declare @Type1 int
declare @Type2 int
declare @Type3 int

SET @Valor1 = 30 --VALOR DO PRIMEIRO COLOCADO
SET @Valor2 = 20 --VALOR DO SEGUNDO COLOCADO
SET @Valor3 = 10 --VALOR DO TERCEIRO COLOCADO

SET @Type1 = 1 --TIPO DE MOEDA DO PRIMEIRO COLOCADO
SET @Type2 = 1 --TIPO DE MOEDA DO SEGUNDO COLOCADO
SET @Type3 = 1 --TIPO DE MOEDA DO TERCEIRO COLOCADO


Select top 1 @AccountID1=AccountID,@Name=Name from character order by ResetMon desc, name desc
Select top 1 @AccountID2=AccountID,@Name2=Name from character where Name<>@Name order by ResetMon desc, name desc
Select top 1 @AccountID3=AccountID,@Name3=Name from character where Name<>@Name and Name<>@Name2 order by ResetMon desc, name desc

SELECT @exist = memb___id FROM Z_Credits WHERE memb___id = @AccountID1 AND type = @Type1
if( @exist <> 'NOT' )
begin
UPDATE Z_Credits SET value = value+@Valor1 WHERE memb___id = @AccountID1 AND type = @Type1
end
else
begin
INSERT INTO Z_Credits (memb___id,value,type) VALUES (@AccountID1,@Valor1,@Type1)
end

SET @exist = 'NOT'

SELECT @exist = memb___id FROM Z_Credits WHERE memb___id = @AccountID2 AND type = @Type2
if( @exist <> 'NOT' )
begin
UPDATE Z_Credits SET value = value+@Valor2 WHERE memb___id = @AccountID2 AND type = @Type2
end
else
begin
INSERT INTO Z_Credits (memb___id,value,type) VALUES (@AccountID2,@Valor2,@Type2)
end

SET @exist = 'NOT'

SELECT @exist = memb___id FROM Z_Credits WHERE memb___id = @AccountID3 AND type = @Type3
if( @exist <> 'NOT' )
begin
UPDATE Z_Credits SET value = value+@Valor3 WHERE memb___id = @AccountID3 AND type = @Type3
end
else
begin
INSERT INTO Z_Credits (memb___id,value,type) VALUES (@AccountID3,@Valor3,@Type3)
end

UPDATE Character SET ResetMon=0
onde ta ResetMon vc coloca a sua coluna especifica do seu ranking.