• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Release] X-Team Sources (S4, S6, S8)

Newbie Spellweaver
Joined
Dec 31, 2013
Messages
90
Reaction score
2
Re: Source [MUEMU]

Code:
.h
#define MAX_COMMAND 32
COMMAND_MARRY = 32,

.cpp
this->Add(gMessage.GetMessage(628),COMMAND_MARRY);
It worked perfectly, but did not inject into the database. Run the query from Luis_br!
 
Newbie Spellweaver
Joined
Dec 31, 2013
Messages
90
Reaction score
2
Re: Source [MUEMU]

Run both, but still not injected.
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Nov 26, 2016
Messages
140
Reaction score
28
Re: Source [MUEMU]

Run both, but still not injected.
here:
Code:
USE [MuOnline]
GO/****** Object:  Table [dbo].[Marry]    Script Date: 11/16/2016 20:27:26 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GOCREATE TABLE [dbo].[Marry](
    [Character] [varchar](15) NOT NULL,
    [MarryCharacter] [varchar](15) NOT NULL,
    [MarriedOn] [datetime] NOT NULL
) ON [PRIMARY]
GOSET ANSI_PADDING OFF
GOALTER TABLE [dbo].[Marry] ADD  CONSTRAINT [DF_Marry_MarriedOn]  DEFAULT (getdate()) FOR [MarriedOn]
GOGO
/****** Object:  StoredProcedure [dbo].[WZ_GetMarryInfo]    Script Date: 11/16/2016 20:27:58 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GOALTER Procedure [dbo].[WZ_GetMarryInfo] @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] varchar(10), @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character varchar(10)
AS
BEGINSET NOCOUNT ON
SET XACT_ABORT ONDECLARE @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]You int
DECLARE @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]Him intDECLARE @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]date datetime2 = '2016-01-01 00:00:00.0000000';  
DECLARE @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOnEnd datetime2
DECLARE @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOn intDECLARE @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get1 varchar(10)
DECLARE @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get2 varchar(10)
/*DECLARE @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOn int*/
SELECT @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]You=Count(*) FROM [dbo].[Marry] WHERE Character = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] OR MarryCharacter = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL]
[/B][/I]
/*You are already married*/
SELECT @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]Him=Count(*) FROM [dbo].[Marry] WHERE Character = @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character OR MarryCharacter = @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character

/*He/She is already married*/
SELECT @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get1=MarryCharacter FROM [dbo].[Marry] WHERE Character = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]
SELECT @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get2=Character FROM [dbo].[Marry] WHERE MarryCharacter = @[I][B][URL="http://forum.ragezone.com/members/560057.html"]Names[/URL][/B][/I]ELECT @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOnEnd=MarriedOn FROM [dbo].[Marry] WHERE Character = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] OR MarryCharacter = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL]

[/B][/I]/*Married date*/
SELECT @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOn=DATEDIFF(SECOND, @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]date, @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOnEnd) SELECT @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]You AS CountYou, @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]Him AS CountHim, @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOn AS MarriedOn, @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get1 AS NameGet1, @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get2 AS NameGet2

SET NOCOUNT OFF
SET XACT_ABORT OFFENDGO
/****** Object:  StoredProcedure [dbo].[WZ_SetDivorceInfo]    Script Date: 11/16/2016 20:28:31 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GOALTER Procedure [dbo].[WZ_SetDivorceInfo] @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] varchar(10), @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character varchar(10)
AS
BEGINSET NOCOUNT ON
SET XACT_ABORT ONDELETE FROM [dbo].[Marry] where Character = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] OR MarryCharacter = @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character

SET NOCOUNT OFF
SET XACT_ABORT OFFENDGO
/****** Object:  StoredProcedure [dbo].[WZ_SetMarryInfo]    Script Date: 11/16/2016 20:28:52 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GOALTER Procedure [dbo].[WZ_SetMarryInfo] @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] = varchar(10), @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character = varchar(10)
AS
BEGINSET NOCOUNT ON
SET XACT_ABORT ONINSERT INTO [dbo].[Marry] (Character, MarryCharacter) VALUES  @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character);

SET NOCOUNT OFF
SET XACT_ABORT OFFEND
 
Last edited:
Skilled Illusionist
Joined
Jun 29, 2016
Messages
341
Reaction score
14
Re: Source [MUEMU]



It shows an error message after running this query :
Error irrecuperable de scripting.Se ha encontrado sintaxis incorrecta al analizar GO.
 
Junior Spellweaver
Joined
Nov 26, 2016
Messages
140
Reaction score
28
Re: Source [MUEMU]

It shows an error message after running this query :
Error irrecuperable de scripting.Se ha encontrado sintaxis incorrecta al analizar GO.

Code:
SET ANSI_PADDING ON
GO


CREATE TABLE [dbo].[Marry](
    [Character] [varchar](15) NOT NULL,
    [MarryCharacter] [varchar](15) NOT NULL,
    [MarriedOn] [datetime] NOT NULL
) ON [PRIMARY]


GO


SET ANSI_PADDING OFF
GO


ALTER TABLE [dbo].[Marry] ADD  CONSTRAINT [DF_Marry_MarriedOn]  DEFAULT (getdate()) FOR [MarriedOn]
GO


GO
/****** Object:  StoredProcedure [dbo].[WZ_GetMarryInfo]    Script Date: 11/16/2016 20:27:58 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO


ALTER Procedure [dbo].[WZ_GetMarryInfo] @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] varchar(10), @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character varchar(10)
AS
BEGIN


SET NOCOUNT ON
SET XACT_ABORT ON


DECLARE @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]You int
DECLARE @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]Him int


DECLARE @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]date datetime2 = '2016-01-01 00:00:00.0000000';  
DECLARE @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOnEnd datetime2
DECLARE @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOn int


DECLARE @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get1 varchar(10)
DECLARE @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get2 varchar(10)
/*DECLARE @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOn int*/
SELECT @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]You=Count(*) FROM [dbo].[Marry] WHERE Character = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] OR MarryCharacter = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] /*You are already married*/
SELECT @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]Him=Count(*) FROM [dbo].[Marry] WHERE Character = @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character OR MarryCharacter = @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character /*He/She is already married*/
SELECT @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get1=MarryCharacter FROM [dbo].[Marry] WHERE Character = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]
SELECT @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get2=Character FROM [dbo].[Marry] WHERE MarryCharacter = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]


SELECT @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOnEnd=MarriedOn FROM [dbo].[Marry] WHERE Character = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] OR MarryCharacter = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] /*Married date*/
SELECT @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOn=DATEDIFF(SECOND, @[I][B][URL="http://forum.ragezone.com/members/829527.html"]Start[/URL][/B][/I]date, @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOnEnd) 


SELECT @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]You AS CountYou, @[I][B][URL="http://forum.ragezone.com/members/138004.html"]count[/URL][/B][/I]Him AS CountHiM, @[I][B][URL="http://forum.ragezone.com/members/283349.html"]mar[/URL][/B][/I]riedOn AS MarriedOn, @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get1 AS NameGet1, @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I]Get2 AS NameGet2


SET NOCOUNT OFF
SET XACT_ABORT OFF


END




GO
/****** Object:  StoredProcedure [dbo].[WZ_SetDivorceInfo]    Script Date: 11/16/2016 20:28:31 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO


ALTER Procedure [dbo].[WZ_SetDivorceInfo] @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] varchar(10), @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character varchar(10)
AS
BEGIN


SET NOCOUNT ON
SET XACT_ABORT ON


DELETE FROM [dbo].[Marry] where Character = @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] OR MarryCharacter = @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character


SET NOCOUNT OFF
SET XACT_ABORT OFF


END




GO
/****** Object:  StoredProcedure [dbo].[WZ_SetMarryInfo]    Script Date: 11/16/2016 20:28:52 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO


ALTER Procedure [dbo].[WZ_SetMarryInfo] @[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I] varchar(10), @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character varchar(10)
AS
BEGIN


SET NOCOUNT ON
SET XACT_ABORT ON


INSERT INTO [dbo].[Marry] (Character, MarryCharacter) VALUES   (@[I][B][URL="http://forum.ragezone.com/members/1333344765.html"]name[/URL][/B][/I], @[I][B][URL="http://forum.ragezone.com/members/2000111361.html"]Marry[/URL][/B][/I]Character);


SET NOCOUNT OFF
SET XACT_ABORT OFF


END
 
Last edited by a moderator:
Newbie Spellweaver
Joined
Dec 31, 2013
Messages
90
Reaction score
2
Re: Source [MUEMU]

Working ok, but what does not work is the divorce properly, it is supposed to be able to divorce after a week, but allows it on the same day to get married.
 
Newbie Spellweaver
Joined
Aug 8, 2015
Messages
12
Reaction score
0
Re: Source [MUEMU]

Can anyone help in downgrade to the 97d? Please =/
 
Newbie Spellweaver
Joined
Dec 4, 2015
Messages
7
Reaction score
0
Re: Source [MUEMU]


command /marry track or /marry trace not working :/
 
Skilled Illusionist
Joined
Jun 29, 2016
Messages
341
Reaction score
14
Re: Source [MUEMU]

did i miss something about config? i used all the querys but nothing happen when I use /marry charname
 
Experienced Elementalist
Joined
Dec 2, 2004
Messages
225
Reaction score
30
Re: Source [MUEMU]

ENG

Hi
Does anyone know the offset to add the minimap to the main season 6 unpacked?

SPN

Hola

alguien sabe el offset para agregar el minimap al main season 6 unpacked?

Thanks
 
Newbie Spellweaver
Joined
Apr 27, 2017
Messages
26
Reaction score
1
Re: Source [MUEMU]

how to fix item custom bow and crowbow work with skill in Season 4 mueMU ???
you have to code it.
i have source work on my s6, but you need research offset your main.
 
Junior Spellweaver
Joined
Nov 26, 2016
Messages
140
Reaction score
28
Re: Source [MUEMU]

share source please
http://forum.ragezone.com/f508/custom-bows-crossbows-client-source-1080350/ source.

Code:
[COLOR=#ff0000]#define iBowAddSkillEffect 0x0074A128 // 1.04E
#define iBowAddInventoryPos 0x005CC8E4 // 1.04E 
#define iBowAddPlayerDimension 0x00566178 // 1.04E [/COLOR]
Code:
DWORD IsBowItem = 0;
DWORD IsCrossItem = 0;
DWORD BowValue = 0x09C;
DWORD MaxBoneCount = 0x108;
DWORD WorldPosition = 0x0FC;
DWORD oCreateEffect = 0x006D9070; // 1.04E
DWORD ReturnBowCode = 0x0074A12E; // 1.04E
DWORD BowPosition = 0x005CC8ED; // 1.04E
DWORD NextBowPosition = 0x005CC92E; // 1.04E
DWORD BowAddPlayerDimension_Offset = 0x0056617F; // 1.04E
 
Skilled Illusionist
Joined
Mar 27, 2013
Messages
305
Reaction score
9
Re: Source [MUEMU]

please share offset in main 1.05D season 4
 
Junior Spellweaver
Joined
Nov 26, 2016
Messages
140
Reaction score
28
Re: Source [MUEMU]

please share offset in main 1.05D season 4
incomplete
Code:
DWORD oCreateEffect = 0063CAB0
DWORD ReturnBowCode = 0068300F
#define iBowAddSkillEffect 00683009[COLOR=#000000]
[/COLOR]