GM Mail to every new Char
Hey everybody,
i want to sent a GM Mail to every new Char with some welcome words. I tried it with dbo.cabal_sp_newchar but with no sucess yet.
Is it possible to realize with existing procedures ? Or is it needed to created a new one ?
Thanks for your Help in advance.
Re: GM Mail to every new Char
Re: GM Mail to every new Char
dbo.cabal_sp_newchar
paste the script below after the SELECT @CR_SUCCESS + @Stylemastery
Quote:
EXEC SERVER01.dbo.cabal_sp_mail_send_GM @CHARACTERIDX,
'WELCOME',
'Welcome to CABAL Online! Have a good day and play safe :)', 0, 0, 0
Re: GM Mail to every new Char
Quote:
Originally Posted by
Drav3n
dbo.cabal_sp_newchar
paste the script below after the SELECT @CR_SUCCESS + @
Stylemastery
Thanks that worked fine . I tried it with insert into didnt knew that EXEC command ;) Thanks for your help ;)