eai rapaziada feliz ano novo pra todos , queri saber se voces tem o tutorial de hunter que o @[Somente membros podem ver os links. ]Araujo posto a uns tempo a traz , eu guardei so a procedures hoje to precisando ^^
se alguem tiver pode me aruma?

segue a procedures


Nota

USE [MuOnline]
GO
/****** Object: StoredProcedure [dbo].[WZ_CustomMonsterReward] Script Date: 01/06/2018 11:39:37 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER Procedure [dbo].[WZ_CustomMonsterReward]
@Account varchar(10),
@Name varchar(10),
@MonsterClass int,
@MapNumber int,
@RewardValue1 int,
@RewardValue2 int
AS
BEGIN

SET NOCOUNT ON
SET XACT_ABORT ON


-- HUNT Ranking Medusa
if (@MonsterClass = 561)
begin
UPDATE Character SET MonsterKill_Medusa=MonsterKill_Medusa+1 WHERE Name=@Name
end


SET NOCOUNT OFF
SET XACT_ABORT OFF

END