Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Dreamer FlyFF (Src+ Resource)

Junior Spellweaver
Joined
May 13, 2020
Messages
106
Reaction score
3
It's because what was shared wasn't a query. Just a base outline of what is required.


Add these to character_tbl either by editing the db table through design or using a query.
Code:
m_nBPLevel  int
m_nBPPoints int
m_nBPType int
m_nBPEnable int,
m_szBPEndTime varchar(13)


Essentially, different stuff is ran based on iGu.
Variables that get added to character_str
Code:
, @im_nBPLevel int = 0
, @im_nBPPoints int = 0
, @im_nBPType int = 0
, @im_nBPEnable int = 0
, @im_szBPEndTime varchar(13) = 20120202

iGu = S8
Code:
, A.m_nBPLevel
, A.m_nBPPoints
, A.m_nBPType
, A.m_nBPEnable
, A.m_szBPEndTime

iGu = U1
Code:
, m_nBPLevel =  @im_nBPLevel
, m_nBPPoints = @im_nBPPoints
, m_nBPType    = @im_nBPType
, m_nBPEnable = @im_nBPEnable
, m_szBPEndTime = @im_szBPEndTime

iGu = I1
Code:
-- within INSERT CHARACTER_TBL at the bottom after idcampus or w/e if you have db edits
, m_nBPLevel
, m_nBPPoints
, m_nBPType
, m_nBPEnable
, m_szBPEndTime
Code:
-- in the values that get inserted in to the character_tbl by default
-- Battle Pass
, 0
, 0
, 0
, 0
, 20120202

How does this work, I open the battle pass window and it says the battle pass is not activated, it doesn't work after adding items, where should I turn it on thanks



Here we go. duck the PH "Devs"

PHP:
USE [CHARACTER_01_DBF]
GO

/****** Object:  Table [dbo].[tblTemporalPresets]    Script Date: 8/16/2022 8:27:12 AM ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE TABLE [dbo].[tblTemporalPresets](
    [dwWorldID] [int] NULL,
    [dwSex] [int] NULL,
    [dwJob] [int] NULL,
    [szItem] [varchar](max) NULL,
    [szPet] [varchar](max) NULL,
    [szExt] [varchar](max) NULL,
    [szPiercing] [varchar](max) NULL,
    [szIndex] [varchar](2500) NULL,
    [szObjIndex] [varchar](2500) NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

PHP:
USE [CHARACTER_01_DBF]
GO

/****** Object:  StoredProcedure [dbo].[uspTemporalPresetsGet]    Script Date: 8/16/2022 8:28:00 AM ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO








CREATE PROCEDURE [dbo].[uspTemporalPresetsGet]
AS
SET NOCOUNT ON

    SELECT a.[dwWorldID]
          ,a.[dwSex]
          ,a.[dwJob]
          ,a.[szItem]
          ,a.[szPet]
          ,a.[szExt]
          ,a.[szPiercing]
          ,a.[szIndex]
          ,a.[szObjIndex]
        FROM tblTemporalPresets a

SET NOCOUNT OFF




GO

PHP:
USE [CHARACTER_01_DBF]
GO

/****** Object:  StoredProcedure [dbo].[uspTemporalPresetsSave]    Script Date: 8/16/2022 8:28:17 AM ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO



CREATE PROCEDURE [dbo].[uspTemporalPresetsSave]
     [USER=521885]iworld[/USER]ID int,
        @iSex int,
        @iJob int,
        @iszItem        varchar(MAX),
        @iszPet            varchar(MAX),
        @iszExt            varchar(MAX),
        @iszPiercing    varchar(MAX),
        @iszIndex        varchar(2500),
        @iszObjIndex    varchar(2500)
AS
SET NOCOUNT ON

    IF NOT EXISTS ( SELECT * FROM [dbo].[tblTemporalPresets] WHERE dwWorldID = [USER=521885]iworld[/USER]ID AND dwSex = @iSex AND dwJob = @iJob)
        BEGIN 
            INSERT INTO [dbo].[tblTemporalPresets]
                ([dwWorldID],
                [dwSex],
                [dwJob],
                [szItem],
                [szPet],
                [szExt],
                [szPiercing],
                [szIndex],
                [szObjIndex])
            VALUES
                 [USER=521885]iworld[/USER]ID,
                @iSex,
                @iJob,
                @iszItem,
                @iszPet,
                @iszExt,
                @iszPiercing,
                @iszIndex,
                @iszObjIndex)            
        END
    ELSE
        BEGIN
            UPDATE [dbo].[tblTemporalPresets]
                SET dwWorldID = [USER=521885]iworld[/USER]ID,
                    dwSex = @iSex,
                    dwJob = @iJob,
                    szItem = @iszItem,            
                    szPet = @iszPet,
                    szExt = @iszExt,
                    szPiercing = @iszPiercing,
                    szIndex = @iszIndex,
                    szObjIndex = @iszObjIndex
                WHERE dwWorldID = [USER=521885]iworld[/USER]ID AND dwSex = @iSex AND dwJob = @iJob
        END

SET NOCOUNT OFF

GO


Execute
[MENTION=521885]iworld[/MENTION]ID int,
this is an error, how can I break it? Thank you
 
Newbie Spellweaver
Joined
Sep 8, 2011
Messages
67
Reaction score
252
How does this work, I open the battle pass window and it says the battle pass is not activated, it doesn't work after adding items, where should I turn it on thanks






Execute
[MENTION=521885]iworld[/MENTION]ID int,
this is an error, how can I break it? Thank you


maybe remove the ragezone mention tags.
 
Junior Spellweaver
Joined
Mar 24, 2021
Messages
149
Reaction score
25
Can anyone help me please?

I got crash issues in neuz after i open battlepass applet

I got this error in my client:
Code:
2022/ 8/19   19:07:22   GetDlgItem : nID=1082 not Found.

And this is the debug error in neuz:


Help please whats the missing part?
 
Newbie Spellweaver
Joined
Sep 8, 2011
Messages
67
Reaction score
252
Can anyone help me please?

I got crash issues in neuz after i open battlepass applet

I got this error in my client:
Code:
2022/ 8/19   19:07:22   GetDlgItem : nID=1082 not Found.

And this is the debug error in neuz:


Help please whats the missing part?

The resdata entry is incorrect. It is expecting a child window with the id of (1082)[That means a WIDC_ control on the applet] to be part of the parent window and it was not found. Fast forward: this-> was nullptr which is referring to the tagWndCtrl pointer stored in the array "wndCtrl", where i is 1.

How does this work, I open the battle pass window and it says the battle pass is not activated, it doesn't work after adding items, where should I turn it on thanks
I assume a player needs to use a "consumable"(scroll or something) to activate the feature, considering the default end date in the db is 2012.
 
Last edited:
Newbie Spellweaver
Joined
Feb 10, 2022
Messages
11
Reaction score
0
I assume a player needs to use a "consumable"(scroll or something) to activate the feature, considering the default end date in the db is 2012.

Hi there it's me again. I was able to make it work except the duration for battle pass expires once I log the character out. I checked the DB for the character's m_szBPEndTime value and saw it's still at 20120202 despite having the duration changed in the system (battlepass.inc config)

I'm assuming it only works client side and I have to do something with the DB entry or a source change? What might seem to be the issue with this? Thanks!
 
Junior Spellweaver
Joined
Feb 27, 2021
Messages
106
Reaction score
9
Hi guy's, can you upload and give the DB pls ?
 
Junior Spellweaver
Joined
Sep 29, 2021
Messages
133
Reaction score
26
i didn't see the complet db
im sorry and no offense, if you want a complete DB u need to make it by yourself. because there is no complete DB in this thread, as you can see from this thread description
peace out
 
Junior Spellweaver
Joined
May 13, 2020
Messages
106
Reaction score
3
I opened it normally, whoever has these files kindly post them, thank you very much
Item\Itm_SysTicketPrimarket.dds

Theme\BattlePass_Empty.tga
Theme\BattlePass_Fire.tga.tga
Theme\BattlePass_Image0.tga
Theme\BattlePass_Image1.tga
Theme\BattlePass_Locked.tga
Theme\BattlePass_Locked2.tga
Theme\BattlePass_Unlocked.tga
Theme\BattlePass_Unlocked2.tga
 
Junior Spellweaver
Joined
Mar 24, 2021
Messages
149
Reaction score
25
I opened it normally, whoever has these files kindly post them, thank you very much

Stop being lazy and spoonfeeding. Go make your own using Photoshop educate your self for simply exploring things coz i think no one will give the targa files just for you..
 
Junior Spellweaver
Joined
Feb 27, 2021
Messages
106
Reaction score
9
can someone upload the resource folder ( World, theme, etc...) pls ? :)
 
Inactive
Joined
Jan 20, 2009
Messages
1,014
Reaction score
1,830
Dreamer client fully updated & unpacked as of 12/10/2021.
Code:
https://drive.google.com/file/d/1AnlVB8A_tw1v_8pxCtARUMY4SwQLxfNA/view?usp=sharing

Password: RageZone
 
Junior Spellweaver
Joined
Feb 27, 2021
Messages
106
Reaction score
9
"Server verification error" when i try to connect to my account what is cause ?
 
Back
Top