[GSP] [Release] - GSP Valid Scripts for NPC, MonAI, Siege and more (Major part tested)

zedina

Mir3 Dev
Legendary
Dec 22, 2005
3,167
1
1,017
340
Yes some of commands are used on holley

Btw Dj...Can you give us also some examples for Monster Ai scripts? :)

Would help alot
 

Judges

Dedicated Member
Dedicated Member
Aug 5, 2004
139
2
64
I can't get MonAi to poison players. When I test it the monster just poisons itself. Can you do red poison as well as green?
Ultrastone is paralysis?
 

ventus

LOMCN Veteran
Veteran
Oct 17, 2013
925
132
105
Bump, attachments links are dead, would it be possible to reupload? I would love to get castle wars working on gsp.
 

kdashas

Banned
Banned
May 20, 2017
1
0
12
I can't get MonAi to poison players. When I test it the monster just poisons itself. Can you do red poison as well as green?
Ultrastone is paralysis?
I tested the same situation as you did,But there is a snow female monster, I always can't let it perform hidden refresh.
 

sh5002

Loyal Member
Loyal Member
Feb 9, 2017
82
9
20
Bump, attachments links are dead, would it be possible to reupload? I would love to get castle wars working on gsp.

storede procedures
dbo.msp_castlewars_insert
maybe change working.
Code:
USE [Game]
GO
/****** Object:  StoredProcedure [dbo].[msp_castlewars_insert]    Script Date: 2017-05-25 오전 9:58:43 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:        <Author,,Name>
-- Create date: <Create Date,,>
-- Description:    <Description,,>
-- =============================================
ALTER PROCEDURE [dbo].[msp_castlewars_insert]
    -- Add the parameters for the stored procedure here
    (@TargetCastle nvarchar(30),@AttackGuild nvarchar(30),@nYear int,@nMon int,@nDay int)
AS
BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;


    -- Insert statements for procedure here
    insert into [TBL_CastleWars] ( Servername,[TargetCastle],[AttackGuild],[nYear],[nMon],[nDay])
    values ('GSP',@TargetCastle,@AttackGuild,@nYear,@nMon,@nDay)


    --return 0


    return 1


END
 
Last edited: