Hi I have a problem in the telecaster in party
- smp_insert_party -
Please solution
- smp_insert_party -
Please solution
Don't say no :D At least your Telecaster isn't complete 7.4Quote:
no i'm use DB 7.3 add 7.4
USE [Telecaster] GO /****** Object: StoredProcedure [dbo].[smp_insert_party] Script Date: 08/03/2012 18:42:46 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[smp_insert_party] @IN_NAME [nvarchar](31), @IN_PARTY_SID [int], @IN_LEADER_SID [int], @IN_PARTY_TYPE [int] WITH EXECUTE AS CALLER AS SET NOCOUNT ON insert into Party( sid, name, leader_id, share_mode, party_type, lead_party_id ) values( @IN_PARTY_SID, @IN_NAME, @IN_LEADER_SID, 0, @IN_PARTY_TYPE, 0 );
Or my fix for 7.4 smp on the Rappelz Download Center.Quote:
Don't say no :D At least your Telecaster isn't complete 7.4
This will fix it. But you should use complete 7.4 DBs from the RappelzDownloadCenterCode:USE [Telecaster] GO /****** Object: StoredProcedure [dbo].[smp_insert_party] Script Date: 08/03/2012 18:42:46 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[smp_insert_party] @IN_NAME [nvarchar](31), @IN_PARTY_SID [int], @IN_LEADER_SID [int], @IN_PARTY_TYPE [int] WITH EXECUTE AS CALLER AS SET NOCOUNT ON insert into Party( sid, name, leader_id, share_mode, party_type, lead_party_id ) values( @IN_PARTY_SID, @IN_NAME, @IN_LEADER_SID, 0, @IN_PARTY_TYPE, 0 );