Jump to content

kristensen2109

IGC Premium Plus
  • Posts

    47
  • Joined

  • Last visited

  • Days Won

    2

kristensen2109 last won the day on February 8 2024

kristensen2109 had the most liked content!

Contact Methods

  • ICQ
    NO
  • OICQ
    NO
  • Skype
    rabudegam1

Profile Information

  • Gender
    Male

Recent Profile Visitors

593 profile views

kristensen2109's Achievements

Collaborator

Collaborator (7/14)

  • Collaborator
  • Reacting Well
  • First Post
  • Conversation Starter
  • Dedicated

Recent Badges

5

Reputation

1

Community Answers

  1. Make a Custom Ranking plugin like CS,ARKA, for Ice Wind Valley. Like this: But pushing information by Server and Map. Example: Event will occur on server 10 on map 2. Therefore, you can apply this adjustment in the plugin or directly in SQL to obtain this information about where the event will occur. This will separate the deaths on this map. USE [Ranking] -- 20.1.3.0 S GO /****** Object: Table [dbo].[IGC_IceWindKillRanking] Script Date: 01-Apr-25 4:53:11 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[IGC_IceWindKillRanking]( [Server] [tinyint] NOT NULL, [AccountID] [varchar](10) NOT NULL, [Name] [varchar](10) NOT NULL, [GuildName] [varchar](8) NOT NULL, [Class] [int] NOT NULL, [KillCount] [int] NOT NULL, [DeathCount] [int] NOT NULL, CONSTRAINT [PK_IGC_IceWindKillRanking] PRIMARY KEY CLUSTERED ( [Server] ASC, [AccountID] ASC, [Name] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: StoredProcedure [dbo].[IGC_GetIceWindKillRanking] Script Date: 18/3/2025 00:11:15 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE [dbo].[IGC_GetIceWindKillRanking] @Server tinyint AS BEGIN BEGIN TRANSACTION SET NOCOUNT ON SELECT TOP 100 Name, GuildName, Class, KillCount, DeathCount FROM IGC_IceWindKillRanking WHERE Server = @Server ORDER BY KillCount DESC, DeathCount ASC SET NOCOUNT OFF END GO /****** Object: StoredProcedure [dbo].[IGC_SaveIceWindKillRanking] Script Date: 18/3/2025 00:12:58 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE [dbo].[IGC_SaveIceWindKillRanking] @Server tinyint, @AccountID varchar(10), @Name varchar(10), @GuildName varchar(8), @Class int, @KillCount int, @DeathCount int AS BEGIN BEGIN TRANSACTION SET NOCOUNT ON IF EXISTS (SELECT Name FROM IGC_IceWindKillRanking WHERE Server = @Server AND AccountID = @AccountID AND Name = @Name) BEGIN UPDATE IGC_IceWindKillRanking SET Class = @Class, GuildName = @GuildName, KillCount = KillCount + @KillCount, DeathCount = DeathCount + @DeathCount WHERE Server = @Server AND AccountID = @AccountID AND Name = @Name END ELSE BEGIN INSERT INTO IGC_IceWindKillRanking (Server, AccountID, Name, GuildName, Class, KillCount, DeathCount) VALUES (@Server, @AccountID, @Name, @GuildName, @Class, @KillCount, @DeathCount) END IF(@@Error <> 0 ) ROLLBACK TRANSACTION ELSE COMMIT TRANSACTION SET NOCOUNT OFF END
  2. @Wizzy can make this pls???
  3. Add a new format to announce information on the screen, based on Time and on Day, Month and Year. Like: <NewSystem Enable="1"> <Schedule> <Start News ID="0" State="1" Month="-1" Day="-1" DayOfWeek="1" Hour="0" Minute="0" ContinuanceTime="-1" /> <Start News ID="1" State="1" Month="-1" Day="-1" DayOfWeek="2" Hour="1" Minute="0" ContinuanceTime="-1" /> <Start News ID="2" State="1" Month="-1" Day="-1" DayOfWeek="3" Hour="2" Minute="0" ContinuanceTime="-1" /> <Start News ID="3" State="1" Month="-1" Day="-1" DayOfWeek="4" Hour="3" Minute="0" ContinuanceTime="-1" /> <Start News ID="4" State="1" Month="-1" Day="-1" DayOfWeek="5" Hour="4" Minute="0" ContinuanceTime="-1" /> </Schedule> <News ID="0"> <Line Number="0" Text="Teste 1" /> <Line Number="1" Text="Teste 2" /> <Line Number="2" Text="Teste 3" /> </News> <News ID="1"> <Line Number="0" Text="Teste 1" /> <Line Number="1" Text="Teste 2" /> <Line Number="2" Text="Teste 3" /> </News> <News ID="2"> <Line Number="0" Text="Teste 1" /> <Line Number="1" Text="Teste 2" /> <Line Number="2" Text="Teste 3" /> </News> <News ID="3"> <Line Number="0" Text="Teste 1" /> <Line Number="1" Text="Teste 2" /> <Line Number="2" Text="Teste 3" /> </News> <News ID="4"> <Line Number="0" Text="Teste 1" /> <Line Number="1" Text="Teste 2" /> <Line Number="2" Text="Teste 3" /> </News>
  4. Suggestion: Add Section: Duration="XXXXX" In ItemPriceSystem Plugin Example: I want to add to NPC An EXP Seal for 3 days To sell for RUUD. However, I can't because it doesn't Know the "Duration" function Both in SHOP and Plugin
×
×
  • Create New...

Important Information


We use technologies, such as cookies, to customize content and advertising, to provide social media features and to analyse traffic to the site. We also share information about your use of our site with our trusted social media, advertising and analytics partners. See more about cookies and our Privacy Policy.