|
You last visited: Today at 00:54
Advertisement
Inventory Tab
Discussion on Inventory Tab within the Flyff Private Server forum part of the Flyff category.
01/05/2017, 04:32
|
#1
|
elite*gold: 0
Join Date: Aug 2016
Posts: 99
Received Thanks: 3
|
Inventory Tab
I Have a problem adding the Inventory tab I'am done adding all the codes no error while compiling but After I create a New Character or after Choosing a Server the Character Selection will not pop-up And I got this error.
Please help me how to fix this one
2017/ 1/ 5 11:17:09
\Flyff\Source Part\Source v19\Program\_Database\DbManager.cpp, 731 sadfsadg
DbManager.cpp Line 731.
VERIFYSTRING( Inven, mover.m_szName );
Line 722-754
qry->GetStr( "m_Inventory", Inven );
#ifdef __TABBED_INV
qry->GetStr( "m_Inventory2", Inven2 );
strncat( Inven, Inven2, sizeof(Inven2) );
qry->GetStr( "m_Inventory3", Inven3 );
strncat( Inven, Inven3, sizeof(Inven3) );
qry->GetStr( "m_Inventory4", Inven4 );
strncat( Inven, Inven4, sizeof(Inven4) );
#endif
VERIFYSTRING( Inven, mover.m_szName );
while( '$' != Inven[CountStr] )
{
CItemElem BufItemElem;
IndexItem = GetOneItem( &BufItemElem, Inven, &CountStr );
if( IndexItem == -1 )
{
Error( "Inventory : << 프로퍼티 없음. %s, %d", mover.m_szName, BufItemElem.m_dwItemId );
}
else
{
if( IndexItem >= MAX_INVENTORY + MAX_HUMAN_PARTS )
{
Error( "SendPlayerList::Inventory : << IndexItem %s, %d", mover.m_szName, IndexItem );
Error( "Inventory = %s", Inven );
FreeRequest( lpDbOverlappedPlus );
return;
}
mover.m_Inventory.m_apItem[IndexItem] = BufItemElem;
}
}
CountStr = 0;
int iIndex = 0;
|
|
|
01/05/2017, 08:36
|
#2
|
elite*gold: 0
Join Date: Mar 2013
Posts: 204
Received Thanks: 38
|
Fix your Database
|
|
|
01/05/2017, 12:11
|
#3
|
elite*gold: 0
Join Date: Jan 2014
Posts: 773
Received Thanks: 374
|
look in Character_str and search for S2
|
|
|
01/05/2017, 12:29
|
#4
|
elite*gold: 0
Join Date: Aug 2016
Posts: 99
Received Thanks: 3
|
@
how can I fix this? is there a release database for the inventory tab? I've using the code of Dragon Cross but their database is not working with my sql.
@Drabur Is this one? then after?
AS
set nocount on
declare @  connect tinyint set @  connect = 1
DECLARE @om_chLoginAuthority CHAR(1) @  VARCHAR(32) @  slot INT
IF @iGu = 'S2' -- ??? ?? ??????? ?????? ????
BEGIN
IF @iaccount = '' OR @im_szName = ''
BEGIN
SELECT m_chAuthority = '',fError = '1', fText = '????'
RETURN
END
SELECT A.dwWorldID,
A.m_szName,
A.playerslot,
A.End_Time,
A.BlockTime,
A.m_dwIndex,
A.m_idPlayer,
A.m_idparty,
A.m_dwSkinSet,
A.m_dwHairMesh,
A.m_dwHeadMesh,
A.m_dwHairColor,
A.m_dwSex,
A.m_nJob,
A.m_nLevel,
A.m_vPos_x,
A.m_vPos_y,
A.m_vPos_z,
A.m_nStr,
A.m_nSta,
A.m_nDex,
A.m_nInt,
A.m_aJobLv,
A.m_chAuthority,
A.m_idCompany,
A.m_nMessengerState,
B.m_Inventory,
B.m_Inventory2,
B.m_Inventory3,
B.m_Inventory4,
B.m_apIndex,
B.m_adwEquipment,
B.m_dwObjIndex,
m_idGuild = CASE WHEN C.m_idGuild IS NULL THEN '0' ELSE C.m_idGuild END ,
m_idWar = CASE WHEN C.m_idWar IS NULL THEN '0' ELSE C.m_idWar END,
D.m_extInventory,
D.m_InventoryPiercing,
------------- ver. 13
A.m_nHonor,
last_connect = @  connect
FROM CHARACTER_TBL A, INVENTORY_TBL B,GUILD_MEMBER_TBL C, INVENTORY_EXT_TBL D
WHERE A.m_idPlayer = B.m_idPlayer
AND A.serverindex= B.serverindex
AND B.m_idPlayer = D.m_idPlayer
AND B.serverindex = D.serverindex
AND D.m_idPlayer *= C.m_idPlayer
AND D.serverindex *= C.serverindex
AND A.isblock = 'F'
AND A.account = @iaccount
AND A.serverindex= @  rindex
ORDER BY A.playerslot
insert into CHARACTER_TBL_penya_check (account, m_szName, m_dwGold, check_sec, serverindex)
select @iaccount, m_szName, m_dwGold, 9, @  rindex
from CHARACTER_TBL (nolock)
where account = @iaccount and serverindex = @  rindex and TotalPlayTime < 1 and m_dwGold >= 1
RETURN
END
|
|
|
01/05/2017, 18:40
|
#5
|
elite*gold: 0
Join Date: Dec 2012
Posts: 239
Received Thanks: 33
|
try to search all varchar(max) on dragoncross db and then replace yours..
|
|
|
01/06/2017, 04:55
|
#6
|
elite*gold: 0
Join Date: Aug 2005
Posts: 231
Received Thanks: 67
|
base value is the answer
|
|
|
01/06/2017, 12:31
|
#7
|
elite*gold: 0
Join Date: Aug 2016
Posts: 99
Received Thanks: 3
|
@  I have the same varchar(Max) with dragoncross on character_str
@im_Inventory VARCHAR(max)= '',
@im_Inventory2 VARCHAR(max) = '',
@im_Inventory3 VARCHAR(max) = '',
@im_Inventory4 VARCHAR(max) = '',
@im_apIndex VARCHAR(max) = '',
@im_adwEquipment VARCHAR(max) = '',
@im_dwObjIndex VARCHAR(max) = '',
@  how? please help me. @  sorry im poor
|
|
|
01/13/2017, 09:56
|
#8
|
elite*gold: 0
Join Date: Jul 2016
Posts: 230
Received Thanks: 7
|
Hey Cab, i have the same exact issue.
Have you fixed yours already?
Hope someone would help us about this matter.
Thanks
|
|
|
01/15/2017, 11:25
|
#9
|
elite*gold: 0
Join Date: Jul 2016
Posts: 230
Received Thanks: 7
|
bump
|
|
|
 |
Similar Threads
|
[Selling] Sell CS.GO Inventory | Verkaufe mein CS.GO Inventory "CHEAP"
10/10/2015 - Counter-Strike Trading - 3 Replies
Sold
Verkauft
Best regards
Souza
|
Verkaufe Inventory/Sell Inventory
09/16/2015 - Counter-Strike Trading - 3 Replies
Verkaufen mein Inventar, wenn ihr Interesse an was habt pnīt mich.
Steam Community :: Mr.NoAIm :: Item Inventory
Akzeptiere Paypal und PSC.
ihr gebt First oder MM den wir zusammen aussuchen.
LG Erek :)
|
No inventory LC EP3
06/03/2014 - Last Chaos Private Server - 1 Replies
Hello
I put LastChaos ep3 server but my client can not enable inverters by pressing "I" on the keyboard inverters He should open in August but this does not happen or maybe someone knows how to solve this problem, I should mention that it does not display an error none thank you in advance for your help
|
If you have a Inventory bug Look Here
05/21/2011 - S4 League - 7 Replies
I had a Inventory bug. But now I haven't. Now I will show you how to close Inventory bug...
1. You Must have Inventory bug:
http://img192.imageshack.us/img192/3448/s42011052 1221019.jpg
2.Go to the characters...:
http://img3.imageshack.us/img3/4103/s420110521221 052.jpg
3.Select another character...:
http://img703.imageshack.us/img703/5278/s42011052 1221101.jpg
4.Now delete Bugged character...:
http://img651.imageshack.us/img651/6269/s42011052 1221110.jpg
5.Crate new character...:
|
All times are GMT +1. The time now is 00:55.
|
|