الموقع العربي الاول للعبة Silkroad Online

الموقع العربي الاول للعبة Silkroad Online (https://silkroad4arab.com/vb/index.php)
-   قسم الشروحات و البرامج المستخدمة في عمل السيرفرات الخاصة (https://silkroad4arab.com/vb/forumdisplay.php?f=289)
-   -   ان شاء الله يكون من الموضوعات الجامدة في القسم (https://silkroad4arab.com/vb/showthread.php?t=444718)

shasha800 04-08-2012 04:29 AM

ان شاء الله يكون من الموضوعات الجامدة في القسم
 
http://www4.0zz0.com/2012/08/04/03/535470328.gif

أولا Some Query's ( مأخوذة من مواقع أخري )

عضو غلبان ييجي يجيب أفاتار الجي أم من الكونسول ينزل ييجي يأخدوا يقولوا Cannot Pick Up يبقي قاعد زعلان أقولوا عندي الحل أن شاء الله

أولا كود أفاتار الجي أم :

كود PHP:

/makeitem ITEM_ETC_AVATAR_%_GM_UNIFORM 1 

غير % لي M لو رجل أو W لو أمرأة

الكويري :

كود PHP:

use SRO_VT_SHARD 
UPDATE 
[dbo].[_RefObjCommon
SET CanPick 
WHERE CodeName128 like 
'%ITEM_ETC_AVATAR_M_GM_UNIFORM%' 
UPDATE [dbo].[_RefObjCommon
SET CanPick 
WHERE CodeName128 like 
'%ITEM_ETC_AVATAR_W_GM_UNIFORM%' 

http://www4.0zz0.com/2012/08/04/03/553929821.gif

واحد جيه يعمل سيرفر لقي داتابيز عجبتوا عاز يعمل سيرفر بيها دخل Privilaged IP لقي IP Begin - IP End مش IP1~IP8 و لما يكتب الأي بي بتاعوا يطلع أي بي تاني يزعل

أقولوا معايا الحل أن شاء الله

الكويري :

كود PHP:

USE [SRO_VT_ACCOUNT]
GO
/****** Object: Table [dbo].[_PrivilegedIP] ****** Date: 09/13/2011 08:35:06 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
DROP TABLE _PrivilegedIP
GO
CREATE TABLE 
[dbo].[_PrivilegedIP](
[
IP1] [tinyintNOT NULL,
[
IP2] [tinyintNOT NULL,
[
IP3] [tinyintNOT NULL,
[
IP4] [tinyintNOT NULL,
[
IP5] [tinyintNOT NULL,
[
IP6] [tinyintNOT NULL,
[
IP7] [tinyintNOT NULL,
[
IP8] [tinyintNOT NULL
ON [PRIMARY]
GO 

http://www4.0zz0.com/2012/08/04/03/553929821.gif

واحد غايظك و أنت الجي أم متسكوتلوش :D

كويري البان :

كود PHP:

USE [SRO_VT_SHARD]           
GO
--------------------------------                           
DECLARE @
ChrID INT;            
DECLARE @
CharName VARCHAR(64); 
DECLARE @
AccJID INT;           
---------------------------------
SET @CharName =    'CharNameHere'---
---------------------------------
SET @ChrID=(SELECT CharID FROM _Char WHERE CharName16=@CharName)
SET @AccJID=(SELECT UserJID FROM _User WHERE CharID=@ChrID)
-----------------------------------------------------------------
USE 
SRO_VT_ACCOUNT
DECLARE @ID VARCHAR (64)
DECLARE @
Reason VARCHAR(128)
DECLARE @
Begin DATETIME
DECLARE @End DATETIME
SET 
@ID = (Select STRuserID FROM TB_User Where JID = @AccJID)

---------------------------------
SET @Reason    =    'Ban Reason Here'
SET @Begin    =    '2012-05-01 00:00:00.000' --    Time Begin    --
SET @End    =    '2040-01-01 00:00:00.000' --    Time End    --
---------------------------------
---------------------------

INSERT [dbo].[_Punishment]
(
[
UserJID],
[
Type],
[
Executor],
[
Shard],
[
CharName],
[
CharInfo],
[
PosInfo] ,
[
Guide],
[
Description],
[
RaiseTime],
[
BlockStartTime],
[
BlockEndTime],
[
PunishTime],
[
Status]
)
VALUES 
(
@
AccJID,
1,
1,
0,
@
CharName,
1,
1,
@
Reason,
@
Reason,
@
Begin,
@
Begin,
@
End,
@
End,
0);
----------------------------------------------------------
DECLARE @
ReasonID INT
SET 
@ReasonID =
(
Select SerialNo FROM _Punishment Where UserJID = @AccJID)
----------------------------------------------------------
INSERT [dbo].[_BlockedUser]
(
[
UserJID],
[
UserID],
[
Type],
[
SerialNo],
[
TimeBegin],
[
TimeEnd])
VALUES
(
@
AccJID,
@
ID,
1,
@
ReasonID,
@
Begin,
@
End);

-----------------------------------------------------------------
SELECT StrUserID FROM TB_User WHERE JID = @AccJID
----------------------------------------------------------------- 

http://www4.0zz0.com/2012/08/04/03/553929821.gif

طب اتأدب أرفع عنوا البان

الكويري :

كود PHP:

USE [SRO_VT_SHARD]            
GO 
--------------------------------                            
DECLARE @
ChrID INT;             
DECLARE @
CharName VARCHAR(64);  
DECLARE @
AccJID INT;            
--------------------------------- 
SET @CharName =    'CharNameHere'--- 
--------------------------------- 
SET @ChrID=(SELECT CharID FROM _Char WHERE CharName16=@CharName
SET @AccJID=(SELECT UserJID FROM _User WHERE CharID=@ChrID
-------------------------------- 
USE [
SRO_VT_ACCOUNT
-------------------------------- 
DELETE FROM [dbo].[_BlockedUser
WHERE UserJID = @AccJID 
DELETE FROM 
[dbo].[_Punishment
WHERE UserJID = @AccJID 

--By Leandro nukertube ) --   

----------------------------------------------------------------- 
SELECT StrUserID FROM TB_User WHERE JID = @AccJID 
----------------------------------------------------------------- 

طبعا بدل CharNameHere بأسم الاكونت

http://www4.0zz0.com/2012/08/04/03/553929821.gif

أنا عايز أضيف حاجة في الداتابيز و شاكك أنها فيها و خايف أبوظ الدنيا

أكشف عنها ( بقينا دكاترة ) :D

الكويري :

كود PHP:

USE [SRO_VT_SHARD]
GO

SELECT 
[Service]
      ,[
ID]
      ,[
CodeName128]
      ,[
ObjName128]
      ,[
OrgObjCodeName128]
      ,[
NameStrID128]
      ,[
DescStrID128]
      ,[
CashItem]
      ,[
Bionic]
      ,[
TypeID1]
      ,[
TypeID2]
      ,[
TypeID3]
      ,[
TypeID4]
      ,[
DecayTime]
      ,[
Country]
      ,[
Rarity]
      ,[
CanTrade]
      ,[
CanSell]
      ,[
CanBuy]
      ,[
CanBorrow]
      ,[
CanDrop]
      ,[
CanPick]
      ,[
CanRepair]
      ,[
CanRevive]
      ,[
CanUse]
      ,[
CanThrow]
      ,[
Price]
      ,[
CostRepair]
      ,[
CostRevive]
      ,[
CostBorrow]
      ,[
KeepingFee]
      ,[
SellPrice]
      ,[
ReqLevelType1]
      ,[
ReqLevel1]
      ,[
ReqLevelType2]
      ,[
ReqLevel2]
      ,[
ReqLevelType3]
      ,[
ReqLevel3]
      ,[
ReqLevelType4]
      ,[
ReqLevel4]
      ,[
MaxContain]
      ,[
RegionID]
      ,[
Dir]
      ,[
OffsetX]
      ,[
OffsetY]
      ,[
OffsetZ]
      ,[
Speed1]
      ,[
Speed2]
      ,[
Scale]
      ,[
BCHeight]
      ,[
BCRadius]
      ,[
EventID]
      ,[
AssocFileObj128]
      ,[
AssocFileDrop128]
      ,[
AssocFileIcon128]
      ,[
AssocFile1_128]
      ,[
AssocFile2_128]
      ,[
Link]
  
FROM [dbo].[_RefObjCommon]
WHERE (CodeName128 LIKE 'ITEM_MALL_AVATAR_%_AMALRUN'


بدل الكود Amalrun بأي كود مع العلم أنها بتكشف في ال _RefObjCommon بس

http://www4.0zz0.com/2012/08/04/03/553929821.gif

أتخنأت من الأستون خلاص كل شويه تفشل ... عندي الحل

الكويري :

كود PHP:

USE SRO_VT_SHARD
GO
UPDATE _RefObjItem
SET Param4 
100
WHERE ID BETWEEN 4630 
AND 5013 

شيل 100 و حط اللي عايزوا لو عاوزوا 100% خليها 999999

http://www4.0zz0.com/2012/08/04/03/553929821.gif

عايز تدي أس بي لي أكونت الجي أم و مكسل تفتح _Char .... عندي الحل

الكويري للصيني فقط :

كود PHP:

USE SRO_VT_SHARD
DECLARE @CharName varchar (64)
DECLARE  @
CharID int
DECLARE @GiveSP int
SET 
@CharName 'CharName' --Your Char Name
SET 
@GiveSP   '10000000' --Write the amount of Skill Point
SET 
@CharID = (SELECT CharID FROM _Char WHERE CharName16 = @CharName) --Do not change

-- edit by InPanic Kev --
update _ClientConfig
set Data 
'0'
where CharID = @CharID
-- edit by InPanic Kev --

--- Do 
Not Change Here ---
--- 
made by ModGift for RZ ---
DELETE [dbo].[_CharSkill]
   
WHERE [CharID] = @CharID and [SkillID] > '2' and SkillID<'40' 

DELETE [dbo].[_CharSkill]
   
WHERE [CharID] = @CharID and [SkillID] > '40' and SkillID<'70' 

DELETE [dbo].[_CharSkill]
   
WHERE [CharID] = @CharID and [SkillID] > '70' 

UPDATE [dbo].[_CharSkillMastery]
   
SET 
      
[Level] = '0'
 
WHERE CharID= @CharID

UPDATE 
[dbo].[_Char]
  
SET RemainSkillPoint= @GiveSP
  WHERE CharName16 
= @CharName
GO 

http://www4.0zz0.com/2012/08/04/03/553929821.gif

للأوروبي فقط :

كود PHP:

USE SRO_VT_SHARD
DECLARE @CharName varchar (64)
DECLARE @
GiveSP int
SET 
@CharName 'CharName' --Your Char Name
SET 
@GiveSP   '10000000' --Write the amount of Skill Point
SET 
@CharID = (SELECT CharID FROM _Char WHERE CharName16 = @CharName) --Do not change

-- edit by InPanic Kev --
update _ClientConfig
set Data 
'0'
where CharID = @CharID
-- edit by InPanic Kev --

--- Do 
Not Change Here ---
--- 
made by ModGift for RZ  ---
DELETE [dbo].[_CharSkill]
   
WHERE [CharID] = @CharID and [SkillID] > '2'

INSERT INTO [dbo].[_CharSkill]
           ([
CharID]
           ,[
SkillID]
           ,[
Enable])
     
VALUES
           
(@CharID
           
,'8421'
           
,'1')
INSERT INTO [dbo].[_CharSkill]
           ([
CharID]
           ,[
SkillID]
           ,[
Enable])
     
VALUES
           
(@CharID
           
,'8419'
           
,'1')

INSERT INTO [dbo].[_CharSkill]
           ([
CharID]
           ,[
SkillID]
           ,[
Enable])
     
VALUES
           
(@CharID,
           
'8420'
           
,'1')

INSERT INTO [dbo].[_CharSkill]
           ([
CharID]
           ,[
SkillID]
           ,[
Enable])
     
VALUES
           
(@CharID,
           
'9354'
           
,'1')

INSERT INTO [dbo].[_CharSkill]
           ([
CharID]
           ,[
SkillID]
           ,[
Enable])
     
VALUES
           
(@CharID,
           
'9355'
           
,'1')

INSERT INTO [dbo].[_CharSkill]
           ([
CharID]
           ,[
SkillID]
           ,[
Enable])
     
VALUES
           
(@CharID,
           
'9944'
           
,'1')
INSERT INTO [dbo].[_CharSkill]
           ([
CharID]
           ,[
SkillID]
           ,[
Enable])
     
VALUES
           
(@CharID,
           
'10625'
           
,'1')
INSERT INTO [dbo].[_CharSkill]
           ([
CharID]
           ,[
SkillID]
           ,[
Enable])
     
VALUES
           
(@CharID,
           
'11162'
           
,'1')
INSERT INTO [dbo].[_CharSkill]
           ([
CharID]
           ,[
SkillID]
           ,[
Enable])
     
VALUES
           
(@CharID,
           
'11526'
           
,'1')
UPDATE [dbo].[_CharSkillMastery]
   
SET 
      
[Level] = '0'
 
WHERE CharID= @CharID
UPDATE 
[dbo].[_Char]
  
SET RemainSkillPoint= @GiveSP
  WHERE CharName16 
= @CharName
GO 

http://www4.0zz0.com/2012/08/04/03/553929821.gif

عايز تعمل مكان جديد للتيليبورت مطرح ما أنت موقف أكونت معين ... أتفضل :

الكويري :

كود PHP:

USE SRO_VT_SHARD /* Add new Teleport By shasha800 */


DECLARE @Teleport VARCHAR (64)
DECLARE @
CHARNAME1 VARCHAR (30)
DECLARE @
CHARNAME2 VARCHAR (30)
DECLARE @
OwnTeleport INT
DECLARE @Fee INT
DECLARE @RequiredLVL INT

/* Put your settings here */
SET @Teleport 'PVP_ZONE' -- any name you want exPK_ZONE or PVP_ZONE
SET 
@CHARNAME1 'CHARNAME1' -- Teleport position
SET 
@CHARNAME2 'CHARNAME2' -- Spawn position after teleport
SET 
@OwnTeleport 1  -- Target teleport ID exfor Jangan for Hotan 20 for Constantinople
SET 
@Fee 50000  -- Gold amount to Pass the teleport
SET 
@RequiredLVL 0  -- minimum level required to teleport 0 for no restriction ex:90 lvl 90 and higher can teleport
/* settings area end here */

IF EXISTS (SELECT CodeName128 FROM _RefObjCommon WHERE CodeName128 'STORE_'+@Teleport)
 
BEGIN
  raiserror
('The stated teleportname of %s is already exist!',11,1,@Teleport);
  RETURN;
 
END
    
    
DECLARE @MAXOBJ INT = (SELECT MAX (IDFROM _RefObjCommon)+1
    
DECLARE @REGION1 INT SET @REGION1 = (SELECT (LatestRegionFROM _Char WHERE CharName16 = @CHARNAME1)
    DECLARE @
POSX1 INT SET @POSX1 = (SELECT (POSXFROM _Char WHERE CharName16 = @CHARNAME1)
    DECLARE @
POSY1 INT SET @POSY1 = (SELECT (POSYFROM _Char WHERE CharName16 = @CHARNAME1)
    DECLARE @
POSZ1 INT SET @POSZ1 = (SELECT (POSZFROM _Char WHERE CharName16 = @CHARNAME1)
    DECLARE @
LINK INT = (SELECT MAX (IDFROM _RefObjStruct)+1
     
    SET IDENTITY_INSERT _RefObjCommon ON
    INSERT INTO _RefObjCommon 
(Service,ID,CodeName128,ObjName128,OrgObjCodeName128,NameStrID128,DescStrID128,CashItem,Bionic,TypeID1,TypeID2,TypeID3,TypeID4,DecayTime,Country,Rarity,CanTrade,CanSell,CanBuy,CanBorrow,CanDrop,CanPick,CanRepair,CanRevive,CanUse,CanThrow,Price,CostRepair,CostRevive,CostBorrow,KeepingFee,SellPrice,ReqLevelType1,ReqLevel1,ReqLevelType2,ReqLevel2,ReqLevelType3,ReqLevel3,ReqLevelType4,ReqLevel4,MaxContain,RegionID,Dir,OffsetX,OffsetY,OffsetZ,Speed1,Speed2,Scale,BCHeight,BCRadius,EventID,AssocFileObj128,AssocFileDrop128,AssocFileIcon128,AssocFile1_128,AssocFile2_128,LinkVALUES
    
(1,@MAXOBJ,'STORE_'+@Teleport,@Teleport,'xxx','SN_STORE_'+@Teleport,'xxx',0,0,4,1,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,@REGION1,0,@POSX1,@POSY1,@POSZ1,0,0,50,50,30,0,'quest\teleport01.bsr','xxx','xxx','xxx','xxx',@link)
    
SET IDENTITY_INSERT _RefObjCommon OFF
    
    
print ''
    
print 'Add the following line to teleportbuilding.txt @server_dep\silkroad\textdata folder'
    
print '1    '+CONVERT(varchar(max),@MAXOBJ)+'    '+'STORE_'+@Teleport+'    '+@Teleport+'    xxx    '+'SN_STORE_'+@Teleport+'    xxx    0    0    4    1    1    0    0    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    '+CONVERT(varchar(max),@REGION1)+'    0    '+CONVERT(varchar(max),@POSX1)+'    '+CONVERT(varchar(max),@POSY1)+'    '+CONVERT(varchar(max),@POSZ1)+'    0    0    50    50    30    0    quest\teleport01.bsr    xxx    xxx    xxx    xxx    '+CONVERT(varchar(max),@link)
    print 
''
    
print 'Add the following line to textdata_object.txt @server_dep\silkroad\textdata folder'
    
print ''
    
print '1    '+'SN_STORE_'+@Teleport+'                                '+@Teleport
    
print ''
      
print ''

  
SET IDENTITY_INSERT _RefObjStruct ON
  INSERT INTO _RefObjStruct 
(ID,Dummy_DataVALUES
  
(@LINK,0)
  
SET IDENTITY_INSERT _RefObjStruct OFF
  
  
DECLARE @MAXTELID INT = (SELECT MAX (IDFROM _RefTeleport)+1
  
DECLARE @WORLDID INT = (SELECT (WorldIDFROM _Char where CharName16 = @CHARNAME2)
  DECLARE @
REGION2 INT SET @REGION2 = (SELECT (LatestRegionFROM _Char WHERE CharName16 = @CHARNAME2)
  DECLARE @
POSX2 INT SET @POSX2 = (SELECT (POSXFROM _Char WHERE CharName16 = @CHARNAME2)
  DECLARE @
POSY2 INT SET @POSY2 = (SELECT (POSYFROM _Char WHERE CharName16 = @CHARNAME2)
  DECLARE @
POSZ2 INT SET @POSZ2 = (SELECT (POSZFROM _Char WHERE CharName16 = @CHARNAME2)

  
INSERT INTO _RefTeleport (Service,ID,CodeName128,AssocRefObjCodeName128,AssocRefObjID,ZoneName128,GenRegionID,GenPos_X,GenPos_Y,GenPos_Z,GenAreaRadius,CanBeResurrectPos,CanGotoResurrectPos,GenWorldID,BindInteractionMask,FixedServiceVALUES
  
(1,@MAXTELID,'GATE_'+@Teleport,'STORE_'+@Teleport,@MAXOBJ,'SN_STORE_'+@Teleport,@REGION2,@POSX2,@POSY2,@POSZ2,30,0,0,@WORLDID,1,0)
  
  print 
''
  
print 'Add the following line to teleportdata.txt @server_dep\silkroad\textdata folder'
  
print '1    '+CONVERT(varchar(max),@MAXTELID)+'    '+'GATE_'+@Teleport+'    '+CONVERT(varchar(max),@MAXOBJ)+'    '+'SN_STORE_'+@Teleport+'    '+CONVERT(varchar(max),@REGION2)+'    '+CONVERT(varchar(max),@POSX2)+'    '+CONVERT(varchar(max),@POSY2)+'    '+CONVERT(varchar(max),@POSZ2)+'    30    0    0    '+CONVERT(varchar(max),@WORLDID)+'    1    0'
  
print ''
  
print ''

  
IF @RequiredLVL 0
  BEGIN
    INSERT INTO _RefTeleLink 
(Service,OwnerTeleport,TargetTeleport,Fee,RestrictBindMethod,RunTimeTeleportMethod,CheckResult,Restrict1,Data1_1,Data1_2,Restrict2,Data2_1,Data2_2,Restrict3,Data3_1,Data3_2,Restrict4,Data4_1,Data4_2,Restrict5,Data5_1,Data5_2VALUES
    
(1,@OwnTeleport,@MAXTELID,@Fee,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
    
INSERT INTO _RefTeleLink (Service,OwnerTeleport,TargetTeleport,Fee,RestrictBindMethod,RunTimeTeleportMethod,CheckResult,Restrict1,Data1_1,Data1_2,Restrict2,Data2_1,Data2_2,Restrict3,Data3_1,Data3_2,Restrict4,Data4_1,Data4_2,Restrict5,Data5_1,Data5_2VALUES
    
(1,@MAXTELID,@OwnTeleport,@Fee,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
    
print 
''
    
print 'Add the following lines to teleportlink.txt @server_dep\silkroad\textdata folder'
    
print '1    '+CONVERT(varchar(max),@OwnTeleport)+'    '+CONVERT(varchar(max),@MAXTELID)+'    '+CONVERT(varchar(max),@Fee)+'    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0'
    
print '1    '+CONVERT(varchar(max),@MAXTELID)+'    '+CONVERT(varchar(max),@OwnTeleport)+'    '+CONVERT(varchar(max),@Fee)+'    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0'
    
print ''
  
END
  
ELSE BEGIN
    INSERT INTO _RefTeleLink 
(Service,OwnerTeleport,TargetTeleport,Fee,RestrictBindMethod,RunTimeTeleportMethod,CheckResult,Restrict1,Data1_1,Data1_2,Restrict2,Data2_1,Data2_2,Restrict3,Data3_1,Data3_2,Restrict4,Data4_1,Data4_2,Restrict5,Data5_1,Data5_2VALUES
    
(1,@OwnTeleport,@MAXTELID,@Fee,0,0,0,1,@RequiredLVL,999,0,0,0,0,0,0,0,0,0,0,0,0)
    
    print 
''
    
print ''
    
print 'Add the following line to teleportlink.txt @server_dep\silkroad\textdata folder'
    
print '1    '+CONVERT(varchar(max),@OwnTeleport)+'    '+CONVERT(varchar(max),@MAXTELID)+'    '+CONVERT(varchar(max),@Fee)+'    0    0    0    1    '+CONVERT(varchar(max),@RequiredLVL)+'    999    0    0    0    0    0    0    0    0    0    0    0    0'
    
print ''

  
END

print ''
print 'Done!' 

http://www4.0zz0.com/2012/08/04/03/553929821.gif

عشان تاخد بف الأكاديمي و كده ... عندي الحل أن شاء الله :

الكويري :

كود PHP:

USE [SRO_VT_SHARD]
DECLARE @
CharName Varchar (MAX)
DECLARE @
Graduates INT
DECLARE @HonorPoints INT
DECLARE @CharID INT
DECLARE @CampID INT
SET        
@CharName '_2ReaiS_'
SET        @CharID = (Select CharID FROM _Char Where CharName16 = @CharName)
SET        @CampID    = (Select TOP 1 CampID FROM _TrainingCampBuffStatus Where RecipientCharID = @CharID)
SET        @Graduates    =    '1234'
SET        @HonorPoints=    @Graduates 39

--------------------

UPDATE [Dbo].[_TrainingCamp]
SET GraduateCount = @Graduates
WHERE 
[Dbo].[_TrainingCamp].[ID] = @CampID
UPDATE 
[dbo].[_TrainingCampMember]
SET HonorPoint = @HonorPoints
WHERE 
[dbo].[_TrainingCampMember].[CampID]=@CampID 

http://www4.0zz0.com/2012/08/04/03/553929821.gif


بقيت موردر و عايز تخلصوا .... عندي الحل

الكويري :

كود PHP:

USE [SRO_VT_SHARD]
DECLARE @
CharName Varchar(max)
SET  @CharName '_2ReaiS_'

UPDATE _Char SET
RemainHwanCount 
5,
DailyPK0,
TotalPK0,
PKPenaltyPoint0
WHERE CharName16 
= @CharName 

http://www4.0zz0.com/2012/08/04/03/553929821.gif

أفاتار الديمون شيطان : ( مسافات مظبوطة ) يعني مجرد كوبي بيست

صورة من الأفاتار :

http://www11.0zz0.com/2012/08/04/02/907137335.jpg

الفيلز http://www.mediafire.com/?f2ukmxmxzsv8bdw

_RefObjCommon :

كود PHP:

1    41802    ITEM_MALL_AVATAR_M_SAYTAN_DRESS_HAT    ?? ??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS_HAT    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS_HAT_TT_DESC    0    0    3    1    13    1    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    itemAvataravatar_m_saytan_hat.bsr    itemetcdrop_ch_eventbox.bsr    itemAvatarmall_avatar_m_saytan_dress_hat.ddj    xxx    xxx    21333 
1    41803    ITEM_MALL_AVATAR_W_SAYTAN_DRESS_HAT    
?? ??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS_HAT    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS_HAT_TT_DESC    0    0    3    1    13    1    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    itemAvataravatar_w_saytan_hat.bsr    itemetcdrop_ch_eventbox.bsr    itemAvatarmall_avatar_w_saytan_dress_hat.ddj    xxx    xxx    21334 
1    41804    ITEM_MALL_AVATAR_M_SAYTAN_DRESS    
?? ??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS_TT_DESC    0    0    3    1    13    2    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    itemAvataravatar_m_saytan.bsr    itemetcdrop_ch_eventbox.bsr    itemAvatarmall_avatar_m_saytan_dress.ddj    xxx    xxx    21335 
1    41805    ITEM_MALL_AVATAR_W_SAYTAN_DRESS    
?? ??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS_TT_DESC    0    0    3    1    13    2    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    itemAvataravatar_w_saytan.bsr    itemetcdrop_ch_eventbox.bsr    itemAvatarmall_avatar_w_saytan_dress.ddj    xxx    xxx    21336 
1    41806    ITEM_MALL_AVATAR_M_SAYTAN_DRESS_ATTACH    
?? ??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS_ATTACH    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS_ATTACH_TT_DESC    0    0    3    1    13    3    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    itemAvataravatar_saytan_attach.bsr    itemetcdrop_ch_eventbox.bsr    itemAvatarmall_avatar_m_saytan_dress_attach.ddj    xxx    xxx    21337 
1    41807    ITEM_MALL_AVATAR_W_SAYTAN_DRESS_ATTACH    
?? ??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS_ATTACH    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS_ATTACH_TT_DESC    0    0    3    1    13    3    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    itemAvataravatar_saytan_attach.bsr    itemetcdrop_ch_eventbox.bsr    itemAvatarmall_avatar_w_saytan_dress_attach.ddj    xxx    xxx    21338 

_RefObjItem


كود PHP:

21333    1    1    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    xxx    -1    xxx       -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0    0 
21334    1    0    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx       -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0    0 
21335    1    1    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx       -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [?,?,?,?,?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1    0 
21336    1    0    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx       -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [?,?,?,?,?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1    0 
21337    1    1    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx       -1    xxx    -1    xxx    -1    xxx    -1    xxx    1280    [??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1    0    0 
21338    1    0    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx       -1    xxx    -1    xxx    -1    xxx    -1    xxx    1280    [??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1    0    0 

متنساش تغير الأي دي و اللنك و اللي ميعرفش يستعمل الكويري ده :

كود PHP:

USE SRO_VT_SHARD
DECLARE @CommonID INT
DECLARE @ItemLinkID INT
SET 
@CommonID = (SELECT ID FROM _RefObJCommon WHERE ID = (SELECT MAX(IDFROM _RefObJCommon))+1
SET 
@ItemLinkID = (SELECT ID FROM _RefObJItem WHERE ID = (SELECT MAX(IDFROM _RefObJItem))+1
print 'Common ID you have to use: '+cast(@CommonID as varchar(15))
print 
'Common Link ID you have to use: '+cast(@ItemLinkID as varchar(15)) 

ItemData_45000 : ( ديه في الميديا ) :

كود PHP:

1    41802    ITEM_MALL_AVATAR_M_SAYTAN_DRESS_HAT    &#47560;인 샤이탄 모자 (남)    xxx    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS_HAT    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_saytan_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_saytan_dress_hat.ddj    xxx    xxx    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [투,직업]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0 
1    41803    ITEM_MALL_AVATAR_W_SAYTAN_DRESS_HAT    &#47560;인 샤이탄 모자 (여)    xxx    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS_HAT    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_saytan_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_saytan_dress_hat.ddj    xxx    xxx    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [투,직업]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0 
1    41804    ITEM_MALL_AVATAR_M_SAYTAN_DRESS    &#47560;인 샤이탄 의상 (남)    xxx    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS_TT_DESC    1    0    3    1    13    2    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_saytan.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_saytan_dress.ddj    xxx    xxx    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [상,견,장,하,신,직업]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1 
1    41805    ITEM_MALL_AVATAR_W_SAYTAN_DRESS    &#47560;인 샤이탄 의상 (여)    xxx    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS_TT_DESC    1    0    3    1    13    2    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_saytan.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_saytan_dress.ddj    xxx    xxx    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [상,견,장,하,신,직업]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1 
1    41806    ITEM_MALL_AVATAR_M_SAYTAN_DRESS_ATTACH    &#47560;인 샤이탄 부착 (남)    xxx    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS_ATTACH    SN_ITEM_MALL_AVATAR_M_SAYTAN_DRESS_ATTACH_TT_DESC    1    0    3    1    13    3    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_saytan_attach.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_saytan_dress_attach.ddj    xxx    xxx    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1280    [부착,휘장]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1    0 
1    41807    ITEM_MALL_AVATAR_W_SAYTAN_DRESS_ATTACH    &#47560;인 샤이탄 부착 (여)    xxx    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS_ATTACH    SN_ITEM_MALL_AVATAR_W_SAYTAN_DRESS_ATTACH_TT_DESC    1    0    3    1    13    3    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_saytan_attach.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_saytan_dress_attach.ddj    xxx    xxx    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1280    [부착,휘장]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1    0 

متنساش تغير الاي دي بردوا

http://www4.0zz0.com/2012/08/04/03/553929821.gif

ArchAngel Wing Dress :

صورة من ألافاتار : http://www11.0zz0.com/2012/08/04/02/342333718.jpg

الفيلز : http://www.mediafire.com/?u6s9dd5npqzvd3z

بردوا ماتنساش تغير الاي دي :

_RefObjCommon :

كود PHP:

1    41814    ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS_HAT    ??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS_HAT    SN_ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    0    1    1    159    1    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\avatar\avatar_m_angel_powers_dress_hat.bsr    item\etc\drop_ch_eventbox.bsr    Premium\Avatar\mall_avatar_m_angel_powers_dress_hat.ddj    xxx    xxx    21348
1    41815    ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS_HAT    
??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS_HAT    SN_ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    0    1    1    159    1    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\avatar\avatar_w_angel_powers_dress_hat.bsr    item\etc\drop_ch_eventbox.bsr    Premium\Avatar\mall_avatar_w_angel_powers_dress_hat.ddj    xxx    xxx    21349
1    41816    ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS    
??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS    SN_ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS_TT_DESC    1    0    3    1    13    2    180000    3    0    0    1    1    159    1    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\avatar\avatar_m_angel_powers_dress.bsr    item\etc\drop_ch_eventbox.bsr    Premium\Avatar\mall_avatar_m_angel_powers_dress.ddj    xxx    xxx    21350
1    41817    ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS    
??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS    SN_ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS_TT_DESC    1    0    3    1    13    2    180000    3    0    0    1    1    159    1    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\avatar\avatar_w_angel_powers_dress.bsr    item\etc\drop_ch_eventbox.bsr    Premium\Avatar\mall_avatar_w_angel_powers_dress.ddj    xxx    xxx    21351 


_RefObjItem :


كود PHP:

21348    1    1    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0    0
21349    1    0    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0    0
21350    1    1    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [?,?,?,?,?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1    0
21351    1    0    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [?,?,?,?,?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1    0 


Itemdata_45000 : متنساش تغير الأي دي بردوا

كود PHP:

1    41886    ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS_HAT    ?? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS_HAT    SN_ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\avatar\avatar_m_angel_powers_dress_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\avatar\mall_avatar_m_angel_powers_dress_hat.ddj    xxx    xxx    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0
1    41887    ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS_HAT    
?? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS_HAT    SN_ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\avatar\avatar_w_angel_powers_dress_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\avatar\mall_avatar_w_angel_powers_dress_hat.ddj    xxx    xxx    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0
1    41888    ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS    
?? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS    SN_ITEM_MALL_AVATAR_M_ANGEL_POWERS_DRESS_TT_DESC    1    0    3    1    13    2    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\avatar\avatar_m_angel_powers_dress.bsr    item\etc\drop_ch_eventbox.bsr    item\avatar\mall_avatar_m_angel_powers_dress.ddj    xxx    xxx    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1598    [?,?,?,?,?,??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    0
1    41889    ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS    
?? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS    SN_ITEM_MALL_AVATAR_W_ANGEL_POWERS_DRESS_TT_DESC    1    0    3    1    13    2    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\avatar\avatar_w_angel_powers_dress.bsr    item\etc\drop_ch_eventbox.bsr    item\avatar\mall_avatar_w_angel_powers_dress.ddj    xxx    xxx    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1598    [?,?,?,?,?,??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    0 

http://www4.0zz0.com/2012/08/04/03/553929821.gif

أفاتار الفونكس :

صورة من الأفاتار : http://www11.0zz0.com/2012/08/04/02/445293737.jpg

ألفيلز : http://depositfiles.com/files/exr9r51bu

_RefObjCommon :

كود PHP:

1    43710    ITEM_MALL_AVATAR_M_PHOENIX_DRESS_HAT    ??? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_PHOENIX_DRESS_HAT    SN_ITEM_MALL_AVATAR_M_PHOENIX_DRESS_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_phoenix_dress_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_phoenix_dress_hat.ddj    xxx    xxx    21435
1    43711    ITEM_MALL_AVATAR_W_PHOENIX_DRESS_HAT    
??? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_PHOENIX_DRESS_HAT    SN_ITEM_MALL_AVATAR_W_PHOENIX_DRESS_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_phoenix_dress_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_phoenix_dress_hat.ddj    xxx    xxx    21436
1    43712    ITEM_MALL_AVATAR_M_PHOENIX_DRESS    
??? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_PHOENIX_DRESS    SN_ITEM_MALL_AVATAR_M_PHOENIX_DRESS_TT_DESC    1    0    3    1    13    2    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_phoenix_dress.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_phoenix_dress.ddj    xxx    xxx    21437
1    43713    ITEM_MALL_AVATAR_W_PHOENIX_DRESS    
??? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_PHOENIX_DRESS    SN_ITEM_MALL_AVATAR_W_PHOENIX_DRESS_TT_DESC    1    0    3    1    13    2    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_phoenix_dress.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_phoenix_dress.ddj    xxx    xxx    21438 



_RefObjItem


كود PHP:

22839    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0    0
22840    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    
-1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0    0
22841    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    
-1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1598    [?,?,?,?,?,??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    0    0
22842    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    
-1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1598    [?,?,?,?,?,??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    0    0 


Itemdata_45000 (ديه في الميديا )


كود PHP:

1    42299    ITEM_MALL_AVATAR_M_PHOENIX_DRESS_HAT    ??? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_PHOENIX_DRESS_HAT    SN_ITEM_MALL_AVATAR_M_PHOENIX_DRESS_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_phoenix_dress_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_phoenix_dress_hat.ddj    xxx    xxx    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0
1    42300    ITEM_MALL_AVATAR_W_PHOENIX_DRESS_HAT    
??? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_PHOENIX_DRESS_HAT    SN_ITEM_MALL_AVATAR_W_PHOENIX_DRESS_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_phoenix_dress_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_phoenix_dress_hat.ddj    xxx    xxx    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0
1    42301    ITEM_MALL_AVATAR_M_PHOENIX_DRESS    
??? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_PHOENIX_DRESS    SN_ITEM_MALL_AVATAR_M_PHOENIX_DRESS_TT_DESC    1    0    3    1    13    2    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_phoenix_dress.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_phoenix_dress.ddj    xxx    xxx    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1598    [?,?,?,?,?,??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    0
1    42302    ITEM_MALL_AVATAR_W_PHOENIX_DRESS    
??? ?? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_PHOENIX_DRESS    SN_ITEM_MALL_AVATAR_W_PHOENIX_DRESS_TT_DESC    1    0    3    1    13    2    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_phoenix_dress.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_phoenix_dress.ddj    xxx    xxx    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1598    [?,?,?,?,?,??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    0 

-http://www4.0zz0.com/2012/08/04/03/553929821.gif

Death Assassin Avatar :

صورة من الافاتار : http://www11.0zz0.com/2012/08/04/02/884369097.jpg

الفيلز :
http://www.mediafire.com/?h7iq3lx93srj22e


Pass : www.silkroad4arab.com


_RefObjCommon ( متنساش تغير الاي دي )


كود PHP:

1    42060    ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN_HAT    ??? ??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN_HAT    SN_ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_day_deathassassin_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_day_deathassassin_hat.ddj    xxx    xxx    21454 
1    42061    ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN_HAT    
??? ??? ?? (?)    xxx    SN_ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN_HAT    SN_ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_day_deathassassin_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_day_deathassassin_hat.ddj    xxx    xxx    21455 
1    42062    ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN    
??? ??? ??? (?)    xxx    SN_ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN    SN_ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN_TT_DESC    1    0    3    1    13    2    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_day_deathassassin.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_day_deathassassin.ddj    xxx    xxx    21456 
1    42063    ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN    
??? ??? ??? (?)    xxx    SN_ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN    SN_ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN_TT_DESC    1    0    3    1    13    2    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_day_deathassassin.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_day_deathassassin.ddj    xxx    xxx    21457 
1    42064    ITEM_MALL_AVATAR_M_DEATHASSASSIN_ATTACH    
??? ??? ??? (?)    xxx    SN_ITEM_MALL_AVATAR_M_DEATHASSASSIN_ATTACH    SN_ITEM_MALL_AVATAR_M_DEATHASSASSIN_ATTACH_TT_DESC    1    0    3    1    13    3    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_deathassassin_attach.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_day_deathassassin_attach.ddj    xxx    xxx    21458 
1    42065    ITEM_MALL_AVATAR_W_DEATHASSASSIN_ATTACH    
??? ??? ??? (?)    xxx    SN_ITEM_MALL_AVATAR_W_DEATHASSASSIN_ATTACH    SN_ITEM_MALL_AVATAR_W_DEATHASSASSIN_ATTACH_TT_DESC    1    0    3    1    13    3    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_deathassassin_attach.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_day_deathassassin_attach.ddj    xxx    xxx    21459 



_RefObjItem :


كود PHP:

21454    1    1    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0    0 
21455    1    0    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0    0 
21456    1    1    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [?,?,?,?,?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1    0 
21457    1    0    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [?,?,?,?,?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1    0 
21458    1    1    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1280    [??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1    0    0 
21459    1    0    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1280    [??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1    0    0 


Itemdata_45000 (ديه في الميديا )


كود PHP:

1    42303    ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN_HAT    &#51453;음의 어쎄신 모자 (남)    xxx    SN_ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN_HAT    SN_ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_day_deathassassin_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_day_deathassassin_hat.ddj    xxx    xxx    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [투,직업]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0
1    42304    ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN_HAT    &#51453;음의 어쎄신 모자 (여)    xxx    SN_ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN_HAT    SN_ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_day_deathassassin_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_day_deathassassin_hat.ddj    xxx    xxx    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [투,직업]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0
1    42305    ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN    &#51453;음의 어쎄신 아바타 (남)    xxx    SN_ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN    SN_ITEM_MALL_AVATAR_M_DAY_DEATHASSASSIN_TT_DESC    1    0    3    1    13    2    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_day_deathassassin.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_day_deathassassin.ddj    xxx    xxx    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [상,견,장,하,신,직업]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1
1    42306    ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN    &#51453;음의 어쎄신 아바타 (여)    xxx    SN_ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN    SN_ITEM_MALL_AVATAR_W_DAY_DEATHASSASSIN_TT_DESC    1    0    3    1    13    2    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_day_deathassassin.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_day_deathassassin.ddj    xxx    xxx    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [상,견,장,하,신,직업]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1
1    42307    ITEM_MALL_AVATAR_M_DEATHASSASSIN_ATTACH    &#51453;음의 어쎄신 부착물 (남)    xxx    SN_ITEM_MALL_AVATAR_M_DEATHASSASSIN_ATTACH    SN_ITEM_MALL_AVATAR_M_DEATHASSASSIN_ATTACH_TT_DESC    1    0    3    1    13    3    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_deathassassin_attach.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_day_deathassassin_attach.ddj    xxx    xxx    1    1    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1280    [부착,휘장]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1    0
1    42308    ITEM_MALL_AVATAR_W_DEATHASSASSIN_ATTACH    &#51453;음의 어쎄신 부착물 (여)    xxx    SN_ITEM_MALL_AVATAR_W_DEATHASSASSIN_ATTACH    SN_ITEM_MALL_AVATAR_W_DEATHASSASSIN_ATTACH_TT_DESC    1    0    3    1    13    3    180000    3    0    0    1    1    223    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_deathassassin_attach.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_day_deathassassin_attach.ddj    xxx    xxx    1    0    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1280    [부착,휘장]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1    0 

http://www4.0zz0.com/2012/08/04/03/553929821.gif

مفاجأة من عندي : Dark New Arabian Dress 2012 ( منقول من موقع maxigame.com )

صورة من الافاتار : http://www12.0zz0.com/2012/08/04/02/944032862.jpg


_RefObjCommon ( متنساش تغير الاي دي )


كود PHP:

1    43987    ITEM_MALL_MAXIGAME_KARA_AVATAR_M_2012_NEW_ARABIA_HAT    ?? ??? ?? (?)    xxx    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_M_2012_NEW_ARABIA_HAT    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_M_2012_NEW_ARABIA_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_2012_new_arabia_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_2012_new_arabia_hat.ddj    xxx    xxx    21564
1    43988    ITEM_MALL_MAXIGAME_KARA_AVATAR_W_2012_NEW_ARABIA_HAT    
?? ??? ?? (?)    xxx    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_W_2012_NEW_ARABIA_HAT    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_W_2012_NEW_ARABIA_HAT_TT_DESC    1    0    3    1    13    1    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_2012_new_arabia_hat.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_2012_new_arabia_hat.ddj    xxx    xxx    21565
1    43989    ITEM_MALL_MAXIGAME_KARA_AVATAR_M_2012_NEW_ARABIA    
?? ??? ?? (?)    xxx    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_M_2012_NEW_ARABIA    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_M_2012_NEW_ARABIA_TT_DESC    1    0    3    1    13    2    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_2012_new_arabia.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_m_2012_new_arabia.ddj    xxx    xxx    21566
1    43990    ITEM_MALL_MAXIGAME_KARA_AVATAR_W_2012_NEW_ARABIA    
?? ??? ?? (?)    xxx    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_W_2012_NEW_ARABIA    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_W_2012_NEW_ARABIA_TT_DESC    1    0    3    1    13    2    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_2012_new_arabia.bsr    item\etc\drop_ch_eventbox.bsr    item\Avatar\mall_avatar_w_2012_new_arabia.ddj    xxx    xxx    21567
1    43991    ITEM_MALL_MAXIGAME_KARA_AVATAR_M_2012_NEW_ARABIA_ATTACH    
?? ??? ?? (?)    xxx    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_M_2012_NEW_ARABIA_ATTACH    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_M_2012_NEW_ARABIA_ATTACH_TT_DESC    1    0    3    1    13    3    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_m_2012_new_arabia_attach.bsr    item\etc\drop_ch_eventbox.bsr    item\avatar\mall_avatar_m_2012_new_arabia_attach.ddj    xxx    xxx    21568
1    43992    ITEM_MALL_MAXIGAME_KARA_AVATAR_W_2012_NEW_ARABIA_ATTACH    
?? ??? ?? (?)    xxx    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_W_2012_NEW_ARABIA_ATTACH    SN_ITEM_MALL_MAXIGAME_KARA_AVATAR_W_2012_NEW_ARABIA_ATTACH_TT_DESC    1    0    3    1    13    3    180000    3    0    1    1    1    255    0    1    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\Avatar\avatar_w_2012_new_arabia_attach.bsr    item\etc\drop_ch_eventbox.bsr    item\avatar\mall_avatar_w_2012_new_arabia_attach.ddj    xxx    xxx    21569 




_RefObjItem :



كود PHP:

21564    1    1    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    xxx    -1    xxx                                                                                                                                  -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0    0
21565    1    0    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx                                                                                                                                  -1    xxx    -1    xxx    -1    xxx    -1    xxx    513    [?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    2    0    0
21566    1    1    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx                                                                                                                                  -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [?,?,?,?,?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1    0
21567    1    0    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx                                                                                                                                  -1    xxx    -1    xxx    -1    xxx    -1    xxx    574    [?,?,?,?,?,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    4    1    0
21568    1    1    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx                                                                                                                                  -1    xxx    -1    xxx    -1    xxx    -1    xxx    1280    [??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1    0    0
21569    1    0    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
-1    xxx    -1    xxx                                                                                                                                  -1    xxx    -1    xxx    -1    xxx    -1    xxx    1280    [??,??]    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    1    0    0 


الفيلز : http://www.mediafire.com/?80i2d78yi8b38qy

http://www4.0zz0.com/2012/08/04/03/553929821.gif

للاسف الكودز في المنتدي فيها حاجة غلط فا أنا هأشرح أزاي تظبط المسافات :

1 - تعمل فايل Text Document جديد

http://www4.0zz0.com/2012/08/04/03/553929821.gif

2 - تفتح برنامج Microsoft SQL Server Managnment Studio

http://www4.0zz0.com/2012/08/04/03/553929821.gif

3 - تقوم بأخذ أخر سطر في _RefObjCommon كوبي و هو غالبا بيكون ده


كود PHP:

1    199    ITEM_CH_TBLADE_07_C    ?? ???    xxx    SN_ITEM_CH_TBLADE_07_C    SN_ITEM_CH_TBLADE_07_C_TT_DESC    0    0    3    1    6    5    180000    0    0    1    1    1    255    3    1    1    1    0    0    1216000    2814    4221    0    9000    425600    1    60    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\china\weapon\tblade_07.bsr    item\etc\drop_ch_equip.bsr    item\china\weapon\tblade_07.ddj    xxx    xxx    199 

خدوا كوبي من ال SQL مش من هنا

http://www4.0zz0.com/2012/08/04/03/553929821.gif

5 - هتعمل زي منا عامل بقي

1 - http://www11.0zz0.com/2012/08/04/03/645242036.png

http://www4.0zz0.com/2012/08/04/03/553929821.gif

2 - http://www11.0zz0.com/2012/08/04/03/123093807.png

http://www4.0zz0.com/2012/08/04/03/553929821.gif

3 - http://www11.0zz0.com/2012/08/04/03/712606859.png

http://www4.0zz0.com/2012/08/04/03/553929821.gif

magic99 04-08-2012 04:46 AM

شكرا وربنا يخليك للغلابه ههههههههه :roll1:
بضحك معاك اوعي تزعل
تسلم ايدك بجد

shasha800 04-08-2012 04:51 AM

ألف شكر لحضرتك علي الرد

محمد سعييد 04-08-2012 04:56 AM

مفيد جدا
( هات الكويرى الناقصه لسه فى كتييير )
حاول تخلى الموضوع منسق عشان لو حد فكر يثبته
تقبل مرورى

magic99 04-08-2012 04:57 AM

طب بعد ازنك انا كان عندي اسفسار او سؤال كده ازاي تضيف new npc وتضيف عنده items لو ممكن تفيدني

shasha800 04-08-2012 04:59 AM

اقتباس:

المشاركة الأصلية كتبت بواسطة محمد سعييد (المشاركة 4273743)
مفيد جدا
( هات الكويرى الناقصه لسه فى كتييير )
حاول تخلى الموضوع منسق عشان لو حد فكر يثبته
تقبل مرورى

يرجي من حضرتك تقولي كويري نقصة زي أيه ؟ أنا جبت اللي مش في المنتدي

magic99 04-08-2012 05:01 AM

لا مش موضوع كويري يعني لو في شرح ازاي تضيف npc و items فيه

shasha800 04-08-2012 05:05 AM

أن شاء الله هضور لحضرتك و لو لقيت هجيب و هكثف جهودي أنو يكون كويري

magic99 04-08-2012 05:09 AM

تبقي برنس برنس برنس وبعدين يا عم من غير حضرتك دي عادي يعني

RandyOrtan 04-08-2012 05:13 AM

شكرا

shasha800 04-08-2012 06:33 AM

اقتباس:

المشاركة الأصلية كتبت بواسطة RandyOrtan (المشاركة 4273774)
شكرا

العفو :angel1:

*Criz* 04-08-2012 06:50 AM

مشكور و الnew arabian انا عملو موضوعين itemmall
و الاكواد دورو من page 3 to page6

GM Secret 04-08-2012 07:31 AM

جمييييل يا ريس أوي تعيش

shasha800 04-08-2012 07:58 AM

اقتباس:

المشاركة الأصلية كتبت بواسطة *criz* (المشاركة 4273936)
مشكور و الnew arabian انا عملو موضوعين itemmall
و الاكواد دورو من page 3 to page6

ألف شكر علي الرد يا برنس

shasha800 04-08-2012 07:59 AM

اقتباس:

المشاركة الأصلية كتبت بواسطة gm secret (المشاركة 4273973)
جمييييل يا ريس أوي تعيش

ربنا يكرمك يا باشا

shasha800 04-08-2012 08:00 AM

شكرا علي التحميس ده يا رجالة أن شاء الله كل جديد في الموضوع ده

shasha800 04-08-2012 08:38 AM

ثانيا الحيوان التابع ( Fellow Pet ) الطائر الناري

صورة له : http://www8.0zz0.com/2012/08/04/05/430437800.jpg


_RefObjCommon ( متنساش تغير الاي دي )

كود PHP:

1    50142    ITEM_CREDDY_COS_P_BIRD_SCROLL    ? ?????    xxx    SN_ITEM_CREDDY_COS_P_BIRD_SCROLL    SN_ITEM_CREDDY_COS_P_BIRD_SCROLL_TT_DESC    1    0    3    2    1    1    180000    3    0    1    1    1    223    0    1    0    0    1    0    0    0    0    0    0    0    1    5    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    xxx    item\etc\drop_ch_acc.bsr    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    21425
1    50143    CREDDY_COS_P_BIRD_001    
??? lv 1    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_002    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    3    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26100
1    50144    CREDDY_COS_P_BIRD_002    
??? lv 2    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_003    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    4    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26101
1    50145    CREDDY_COS_P_BIRD_003    
??? lv 3    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_004    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    4    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26102
1    50146    CREDDY_COS_P_BIRD_004    
??? lv 4    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_005    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    5    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26103
1    50147    CREDDY_COS_P_BIRD_005    
??? lv 5    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_006    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    6    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26104
1    50148    CREDDY_COS_P_BIRD_006    
??? lv 6    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_007    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    6    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26105
1    50149    CREDDY_COS_P_BIRD_007    
??? lv 7    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_008    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    7    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26106
1    50150    CREDDY_COS_P_BIRD_008    
??? lv 8    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_009    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    8    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26107
1    50151    CREDDY_COS_P_BIRD_009    
??? lv 9    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_010    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    8    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26108
1    50152    CREDDY_COS_P_BIRD_010    
??? lv 10    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_011    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    9    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26109
1    50153    CREDDY_COS_P_BIRD_011    
??? lv 11    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_012    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    10    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26110
1    50154    CREDDY_COS_P_BIRD_012    
??? lv 12    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_013    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    11    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26111
1    50155    CREDDY_COS_P_BIRD_013    
??? lv 13    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_014    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    11    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26112
1    50156    CREDDY_COS_P_BIRD_014    
??? lv 14    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_015    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    12    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26113
1    50157    CREDDY_COS_P_BIRD_015    
??? lv 15    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_016    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    13    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26114
1    50158    CREDDY_COS_P_BIRD_016    
??? lv 16    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_017    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    14    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26115
1    50159    CREDDY_COS_P_BIRD_017    
??? lv 17    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_018    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    15    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26116
1    50160    CREDDY_COS_P_BIRD_018    
??? lv 18    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_019    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    16    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26117
1    50161    CREDDY_COS_P_BIRD_019    
??? lv 19    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_020    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    17    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26118
1    50162    CREDDY_COS_P_BIRD_020    
??? lv 20    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_021    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    18    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26119
1    50163    CREDDY_COS_P_BIRD_021    
??? lv 21    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_022    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    19    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26120
1    50164    CREDDY_COS_P_BIRD_022    
??? lv 22    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_023    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    20    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26121
1    50165    CREDDY_COS_P_BIRD_023    
??? lv 23    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_024    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    21    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26122
1    50166    CREDDY_COS_P_BIRD_024    
??? lv 24    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_025    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    22    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26123
1    50167    CREDDY_COS_P_BIRD_025    
??? lv 25    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_026    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    24    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26124
1    50168    CREDDY_COS_P_BIRD_026    
??? lv 26    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_027    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    25    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26125
1    50169    CREDDY_COS_P_BIRD_027    
??? lv 27    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_028    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    26    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26126
1    50170    CREDDY_COS_P_BIRD_028    
??? lv 28    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_029    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    28    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26127
1    50171    CREDDY_COS_P_BIRD_029    
??? lv 29    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_030    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    29    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26128
1    50172    CREDDY_COS_P_BIRD_030    
??? lv 30    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_031    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    30    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26129
1    50173    CREDDY_COS_P_BIRD_031    
??? lv 31    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_032    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    32    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26130
1    50174    CREDDY_COS_P_BIRD_032    
??? lv 32    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_033    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    33    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26131
1    50175    CREDDY_COS_P_BIRD_033    
??? lv 33    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_034    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    35    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26132
1    50176    CREDDY_COS_P_BIRD_034    
??? lv 34    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_035    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    37    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26133
1    50177    CREDDY_COS_P_BIRD_035    
??? lv 35    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_036    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    38    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26134
1    50178    CREDDY_COS_P_BIRD_036    
??? lv 36    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_037    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    40    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26135
1    50179    CREDDY_COS_P_BIRD_037    
??? lv 37    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_038    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    42    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26136
1    50180    CREDDY_COS_P_BIRD_038    
??? lv 38    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_039    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    44    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26137
1    50181    CREDDY_COS_P_BIRD_039    
??? lv 39    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_040    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    46    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26138
1    50182    CREDDY_COS_P_BIRD_040    
??? lv 40    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_041    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    47    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26139
1    50183    CREDDY_COS_P_BIRD_041    
??? lv 41    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_042    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    49    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26140
1    50184    CREDDY_COS_P_BIRD_042    
??? lv 42    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_043    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    52    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26141
1    50185    CREDDY_COS_P_BIRD_043    
??? lv 43    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_044    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    54    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26142
1    50186    CREDDY_COS_P_BIRD_044    
??? lv 44    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_045    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    56    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26143
1    50187    CREDDY_COS_P_BIRD_045    
??? lv 45    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_046    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    58    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26144
1    50188    CREDDY_COS_P_BIRD_046    
??? lv 46    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_047    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    60    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26145
1    50189    CREDDY_COS_P_BIRD_047    
??? lv 47    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_048    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    63    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26146
1    50190    CREDDY_COS_P_BIRD_048    
??? lv 48    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_049    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    65    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26147
1    50191    CREDDY_COS_P_BIRD_049    
??? lv 49    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_050    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    68    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26148
1    50192    CREDDY_COS_P_BIRD_050    
??? lv 50    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_051    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    71    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26149
1    50193    CREDDY_COS_P_BIRD_051    
??? lv 51    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_052    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    73    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26150
1    50194    CREDDY_COS_P_BIRD_052    
??? lv 52    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_053    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    76    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26151
1    50195    CREDDY_COS_P_BIRD_053    
??? lv 53    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_054    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    79    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26152
1    50196    CREDDY_COS_P_BIRD_054    
??? lv 54    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_055    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    82    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26153
1    50197    CREDDY_COS_P_BIRD_055    
??? lv 55    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_056    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    85    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26154
1    50198    CREDDY_COS_P_BIRD_056    
??? lv 56    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_057    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    88    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26155
1    50199    CREDDY_COS_P_BIRD_057    
??? lv 57    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_058    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    91    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26156
1    50200    CREDDY_COS_P_BIRD_058    
??? lv 58    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_059    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    94    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26157
1    50201    CREDDY_COS_P_BIRD_059    
??? lv 59    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_060    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    98    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26158
1    50202    CREDDY_COS_P_BIRD_060    
??? lv 60    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_061    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    101    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26159
1    50203    CREDDY_COS_P_BIRD_061    
??? lv 61    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_062    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    105    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26160
1    50204    CREDDY_COS_P_BIRD_062    
??? lv 62    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_063    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    109    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26161
1    50205    CREDDY_COS_P_BIRD_063    
??? lv 63    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_064    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    113    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26162
1    50206    CREDDY_COS_P_BIRD_064    
??? lv 64    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_065    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    116    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26163
1    50207    CREDDY_COS_P_BIRD_065    
??? lv 65    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_066    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    120    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26164
1    50208    CREDDY_COS_P_BIRD_066    
??? lv 66    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_067    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    125    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26165
1    50209    CREDDY_COS_P_BIRD_067    
??? lv 67    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_068    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    129    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26166
1    50210    CREDDY_COS_P_BIRD_068    
??? lv 68    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_069    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    133    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26167
1    50211    CREDDY_COS_P_BIRD_069    
??? lv 69    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_070    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    138    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26168
1    50212    CREDDY_COS_P_BIRD_070    
??? lv 70    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_071    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    142    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26169
1    50213    CREDDY_COS_P_BIRD_071    
??? lv 71    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_072    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    147    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26170
1    50214    CREDDY_COS_P_BIRD_072    
??? lv 72    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_073    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    152    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26171
1    50215    CREDDY_COS_P_BIRD_073    
??? lv 73    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_074    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    157    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26172
1    50216    CREDDY_COS_P_BIRD_074    
??? lv 74    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_075    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    162    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26173
1    50217    CREDDY_COS_P_BIRD_075    
??? lv 75    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_076    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    168    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26174
1    50218    CREDDY_COS_P_BIRD_076    
??? lv 76    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_077    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    173    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26175
1    50219    CREDDY_COS_P_BIRD_077    
??? lv 77    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_078    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    179    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26176
1    50220    CREDDY_COS_P_BIRD_078    
??? lv 78    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_079    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    185    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26177
1    50221    CREDDY_COS_P_BIRD_079    
??? lv 79    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_080    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    190    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26178
1    50222    CREDDY_COS_P_BIRD_080    
??? lv 80    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_081    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    197    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26179
1    50223    CREDDY_COS_P_BIRD_081    
??? lv 81    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_082    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    203    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26180
1    50224    CREDDY_COS_P_BIRD_082    
??? lv 82    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_083    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    209    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26181
1    50225    CREDDY_COS_P_BIRD_083    
??? lv 83    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_084    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    216    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26182
1    50226    CREDDY_COS_P_BIRD_084    
??? lv 84    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_085    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    223    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26183
1    50227    CREDDY_COS_P_BIRD_085    
??? lv 85    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_086    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    230    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26184
1    50228    CREDDY_COS_P_BIRD_086    
??? lv 86    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_087    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    237    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26185
1    50229    CREDDY_COS_P_BIRD_087    
??? lv 87    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_088    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    244    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26186
1    50230    CREDDY_COS_P_BIRD_088    
??? lv 88    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_089    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    252    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26187
1    50231    CREDDY_COS_P_BIRD_089    
??? lv 89    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_090    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    260    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26188
1    50232    CREDDY_COS_P_BIRD_090    
??? lv 90    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_091    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    268    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26189
1    50233    CREDDY_COS_P_BIRD_091    
??? lv 91    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_092    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    276    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26190
1    50234    CREDDY_COS_P_BIRD_092    
??? lv 92    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_093    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    284    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26191
1    50235    CREDDY_COS_P_BIRD_093    
??? lv 93    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_094    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    293    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26192
1    50236    CREDDY_COS_P_BIRD_094    
??? lv 94    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_095    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    302    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26193
1    50237    CREDDY_COS_P_BIRD_095    
??? lv 95    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_096    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    311    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26194
1    50238    CREDDY_COS_P_BIRD_096    
??? lv 96    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_097    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    320    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26195
1    50239    CREDDY_COS_P_BIRD_097    
??? lv 97    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_098    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    330    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26196
1    50240    CREDDY_COS_P_BIRD_098    
??? lv 98    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_099    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    340    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26197
1    50241    CREDDY_COS_P_BIRD_099    
??? lv 99    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_100    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    350    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26198
1    50242    CREDDY_COS_P_BIRD_100    
??? lv 100    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_101    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    360    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26199
1    50243    CREDDY_COS_P_BIRD_101    
??? lv 101    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_102    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    371    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26200
1    50244    CREDDY_COS_P_BIRD_102    
??? lv 102    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_103    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    382    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26201
1    50245    CREDDY_COS_P_BIRD_103    
??? lv 103    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_104    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    393    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26202
1    50246    CREDDY_COS_P_BIRD_104    
??? lv 104    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_105    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    405    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26203
1    50247    CREDDY_COS_P_BIRD_105    
??? lv 105    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_106    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    417    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26204
1    50248    CREDDY_COS_P_BIRD_106    
??? lv 106    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_107    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    429    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26205
1    50249    CREDDY_COS_P_BIRD_107    
??? lv 107    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_108    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    441    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26206
1    50250    CREDDY_COS_P_BIRD_108    
??? lv 108    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_109    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    454    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26207
1    50251    CREDDY_COS_P_BIRD_109    
??? lv 109    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_110    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    467    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26208
1    50252    CREDDY_COS_P_BIRD_110    
??? lv 110    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_111    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    481    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26209
1    50253    CREDDY_COS_P_BIRD_111    
??? lv 111    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_112    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    495    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26210
1    50254    CREDDY_COS_P_BIRD_112    
??? lv 112    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_113    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    509    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26211
1    50255    CREDDY_COS_P_BIRD_113    
??? lv 113    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_114    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    523    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26212
1    50256    CREDDY_COS_P_BIRD_114    
??? lv 114    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_115    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    538    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26213
1    50257    CREDDY_COS_P_BIRD_115    
??? lv 115    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_116    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    554    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26214
1    50258    CREDDY_COS_P_BIRD_116    
??? lv 116    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_117    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    569    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26215
1    50259    CREDDY_COS_P_BIRD_117    
??? lv 117    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_118    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    586    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26216
1    50260    CREDDY_COS_P_BIRD_118    
??? lv 118    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_119    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    602    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26217
1    50261    CREDDY_COS_P_BIRD_119    
??? lv 119    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_120    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    619    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26218
1    50262    CREDDY_COS_P_BIRD_120    
??? lv 120    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_121    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    637    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26219
1    50263    CREDDY_COS_P_BIRD_121    
??? lv 121    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_122    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    655    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26220
1    50264    CREDDY_COS_P_BIRD_122    
??? lv 122    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_123    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    673    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26221
1    50265    CREDDY_COS_P_BIRD_123    
??? lv 123    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_124    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    692    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26222
1    50266    CREDDY_COS_P_BIRD_124    
??? lv 124    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_125    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    711    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26223
1    50267    CREDDY_COS_P_BIRD_125    
??? lv 125    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_126    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    731    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26224
1    50268    CREDDY_COS_P_BIRD_126    
??? lv 126    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_127    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    751    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26225
1    50269    CREDDY_COS_P_BIRD_127    
??? lv 127    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_128    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    772    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26226
1    50270    CREDDY_COS_P_BIRD_128    
??? lv 128    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_129    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    793    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26227
1    50271    CREDDY_COS_P_BIRD_129    
??? lv 129    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_130    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    815    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26228
1    50272    CREDDY_COS_P_BIRD_130    
??? lv 130    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_131    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    838    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26229
1    50273    CREDDY_COS_P_BIRD_131    
??? lv 131    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_132    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    861    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26230
1    50274    CREDDY_COS_P_BIRD_132    
??? lv 132    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_133    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    884    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26231
1    50275    CREDDY_COS_P_BIRD_133    
??? lv 133    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_134    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    909    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26232
1    50276    CREDDY_COS_P_BIRD_134    
??? lv 134    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_135    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    934    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26233
1    50277    CREDDY_COS_P_BIRD_135    
??? lv 135    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_136    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    959    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26234
1    50278    CREDDY_COS_P_BIRD_136    
??? lv 136    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_137    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    985    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26235
1    50279    CREDDY_COS_P_BIRD_137    
??? lv 137    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_138    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    1012    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26236
1    50280    CREDDY_COS_P_BIRD_138    
??? lv 138    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_139    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    1039    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26237
1    50281    CREDDY_COS_P_BIRD_139    
??? lv 139    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    CREDDY_COS_P_BIRD_140    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    1068    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26238
1    50282    CREDDY_COS_P_BIRD_140    
??? lv 140    COS_P_BEAR_001    SN_PET2_PRO_BEAR_A    xxx    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    1097    0    0    0    0    0    100    200    130    0    4    0    pet2\pet_cat_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_enc_cat_a.ddj    xxx    xxx    26239 


_RefObjChar


كود PHP:

26100    1    0    360    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    8    13    1    1    27    0    27    2    24    1679057940    3    3000    30759    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26101    2    0    441    0    4    4    4    4    4    4    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    10    16    2    2    29    0    29    2    47    1679057940    3    3000    30760    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26102    3    0    524    0    6    6    6    6    6    6    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    12    20    3    3    31    0    31    2    71    1679057940    3    3000    30761    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26103    4    0    611    0    8    8    8    8    8    8    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    15    24    4    4    33    0    33    2    94    1679057940    3    3000    30762    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26104    5    0    701    0    10    10    10    10    10    10    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    18    28    5    5    35    0    35    2    118    1679057940    3    3000    30763    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26105    6    0    795    0    12    12    12    12    12    12    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    21    34    6    6    37    0    37    2    141    1679057940    3    3000    30764    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26106    7    0    892    0    14    14    14    14    14    14    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    25    39    7    7    39    0    39    2    165    1679057940    3    3000    30765    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26107    8    0    992    0    16    16    16    16    16    16    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    29    46    8    8    41    0    41    2    188    1679057940    3    3000    30766    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26108    9    0    1097    0    18    18    18    18    18    18    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    33    53    9    9    43    0    43    2    212    1679057940    3    3000    30767    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26109    10    0    1205    0    20    20    20    20    20    20    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    38    60    10    10    45    0    45    2    235    1679057940    3    3000    30768    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26110    11    0    1317    0    22    22    22    22    22    22    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    43    69    11    11    47    0    47    2    259    1679057940    3    3000    30769    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26111    12    0    1432    0    24    24    24    24    24    24    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    46    74    12    12    49    0    49    2    282    1679057940    3    3000    30770    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26112    13    0    1552    0    26    26    26    26    26    26    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    50    79    13    13    51    0    51    2    306    1679057940    3    3000    30771    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26113    14    0    1677    0    28    28    28    28    28    28    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    53    85    14    14    53    0    53    2    329    1679057940    3    3000    30772    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26114    15    0    1805    0    30    30    30    30    30    30    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    57    91    15    15    55    0    55    2    353    1679057940    3    3000    30773    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26115    16    0    1938    0    32    32    32    32    32    32    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    60    97    16    16    57    0    57    2    376    1679057940    3    3000    30774    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26116    17    0    2076    0    34    34    34    34    34    34    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    64    103    17    17    59    0    59    2    400    1679057940    3    3000    30775    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26117    18    0    2218    0    36    36    36    36    36    36    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    68    109    18    18    61    0    61    2    423    1679057940    3    3000    30776    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26118    19    0    2365    0    38    38    38    38    38    38    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    73    116    19    19    63    0    63    2    447    1679057940    3    3000    30777    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26119    20    0    2517    0    40    40    40    40    40    40    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    77    123    20    20    65    0    65    2    470    1679057940    3    3000    30778    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26120    21    0    2675    0    42    42    42    42    42    42    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    81    130    21    21    67    0    67    2    498    1679057940    3    3000    30780    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26121    22    0    2837    0    44    44    44    44    44    44    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    86    137    22    22    69    0    69    2    528    1679057940    3    3000    30785    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26122    23    0    3005    0    46    46    46    46    46    46    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    91    145    23    23    71    0    71    2    560    1679057940    3    3000    30786    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26123    24    0    3179    0    48    48    48    48    48    48    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    95    153    24    24    73    0    73    2    593    1679057940    3    3000    30787    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26124    25    0    3358    0    50    50    50    50    50    50    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    101    161    25    25    75    0    75    2    629    1679057940    3    3000    30788    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26125    26    0    3544    0    52    52    52    52    52    52    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    106    169    26    26    77    0    77    2    667    1679057940    3    3000    30789    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26126    27    0    3735    0    54    54    54    54    54    54    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    111    178    27    27    79    0    79    2    707    1679057940    3    3000    30790    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26127    28    0    3933    0    56    56    56    56    56    56    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    117    187    28    28    81    0    81    2    749    1679057940    3    3000    30791    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26128    29    0    4137    0    58    58    58    58    58    58    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    122    196    29    29    83    0    83    2    794    1679057940    3    3000    30792    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26129    30    0    4347    0    60    60    60    60    60    60    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    128    205    30    30    85    0    85    2    842    1679057940    3    3000    30793    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26130    31    0    4565    0    62    62    62    62    62    62    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    134    215    31    31    87    0    87    2    884    1679057940    3    3000    30794    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26131    32    0    4789    0    64    64    64    64    64    64    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    141    225    32    32    89    0    89    2    928    1679057940    3    3000    30795    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26132    33    0    5020    0    66    66    66    66    66    66    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    147    236    33    33    91    0    91    2    974    1679057940    3    3000    30796    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26133    34    0    5259    0    68    68    68    68    68    68    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    154    246    34    34    93    0    93    2    1023    1679057940    3    3000    30797    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26134    35    0    5506    0    70    70    70    70    70    70    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    161    257    35    35    95    0    95    2    1074    1679057940    3    3000    30798    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26135    36    0    5760    0    72    72    72    72    72    72    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    168    269    36    36    97    0    97    2    1128    1679057940    3    3000    30799    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26136    37    0    6022    0    74    74    74    74    74    74    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    175    280    37    37    99    0    99    2    1184    1679057940    3    3000    30800    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26137    38    0    6292    0    76    76    76    76    76    76    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    183    293    38    38    101    0    101    2    1244    1679057940    3    3000    30801    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26138    39    0    6571    0    78    78    78    78    78    78    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    191    305    39    39    103    0    103    2    1306    1679057940    3    3000    30802    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26139    40    0    6858    0    78    78    78    78    78    78    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    199    318    40    40    105    0    105    2    1371    1679057940    3    3000    30803    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26140    41    0    7154    0    78    78    78    78    78    78    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    207    331    41    41    107    0    107    2    1426    1679057940    3    3000    30804    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26141    42    0    7459    0    79    79    79    79    79    79    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    216    345    42    42    109    0    109    2    1483    1679057940    3    3000    30805    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26142    43    0    7774    0    79    79    79    79    79    79    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    224    359    43    43    111    0    111    2    1542    1679057940    3    3000    30806    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26143    44    0    8098    0    80    80    80    80    80    80    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    233    373    44    44    113    0    113    2    1604    1679057940    3    3000    30807    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26144    45    0    8432    0    80    80    80    80    80    80    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    243    388    45    45    115    0    115    2    1668    1679057940    3    3000    30808    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26145    46    0    8776    0    80    80    80    80    80    80    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    252    404    46    46    117    0    117    2    1735    1679057940    3    3000    30809    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26146    47    0    9131    0    81    81    81    81    81    81    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    262    420    47    47    119    0    119    2    1804    1679057940    3    3000    30810    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26147    48    0    9496    0    81    81    81    81    81    81    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    272    436    48    48    121    0    121    2    1876    1679057940    3    3000    30811    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26148    49    0    9872    0    81    81    81    81    81    81    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    283    453    49    49    123    0    123    2    1951    1679057940    3    3000    30812    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26149    50    0    10260    0    82    82    82    82    82    82    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    294    470    50    50    125    0    125    2    2029    1679057940    3    3000    30813    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26150    51    0    10659    0    82    82    82    82    82    82    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    305    488    51    51    127    0    127    2    2101    1679057940    3    3000    30814    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26151    52    0    11070    0    82    82    82    82    82    82    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    316    506    52    52    129    0    129    2    2174    1679057940    3    3000    30815    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26152    53    0    11493    0    83    83    83    83    83    83    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    328    525    53    53    130    0    130    2    2250    1679057940    3    3000    30816    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26153    54    0    11928    0    83    83    83    83    83    83    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    340    544    54    54    131    0    131    2    2329    1679057940    3    3000    30817    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26154    55    0    12376    0    83    83    83    83    83    83    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    353    564    55    55    132    0    132    2    2410    1679057940    3    3000    30818    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26155    56    0    12838    0    83    83    83    83    83    83    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    366    585    56    56    133    0    133    2    2495    1679057940    3    3000    30819    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26156    57    0    13313    0    84    84    84    84    84    84    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    379    606    57    57    134    0    134    2    2582    1679057940    3    3000    30820    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26157    58    0    13802    0    84    84    84    84    84    84    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    393    628    58    58    135    0    135    2    2672    1679057940    3    3000    30821    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26158    59    0    14305    0    84    84    84    84    84    84    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    407    650    59    59    136    0    136    2    2766    1679057940    3    3000    30822    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26159    60    0    14823    0    84    84    84    84    84    84    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    421    673    60    60    137    0    137    2    2863    1679057940    3    3000    30825    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26160    61    0    15355    0    85    85    85    85    85    85    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    436    697    61    61    138    0    138    2    2949    1679057940    3    3000    30826    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26161    62    0    15903    0    85    85    85    85    85    85    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    451    722    62    62    139    0    139    2    3037    1679057940    3    3000    30827    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26162    63    0    16467    0    85    85    85    85    85    85    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    467    747    63    63    140    0    140    2    3128    1679057940    3    3000    30828    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26163    64    0    17047    0    85    85    85    85    85    85    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    483    773    64    64    141    0    141    2    3222    1679057940    3    3000    30829    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26164    65    0    17644    0    85    85    85    85    85    85    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    499    799    65    65    142    0    142    2    3319    1679057940    3    3000    30830    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26165    66    0    18258    0    86    86    86    86    86    86    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    516    826    66    66    143    0    143    2    3418    1679057940    3    3000    30831    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26166    67    0    18889    0    86    86    86    86    86    86    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    534    854    67    67    144    0    144    2    3521    1679057940    3    3000    30832    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26167    68    0    19538    0    86    86    86    86    86    86    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    552    883    68    68    145    0    145    2    3626    1679057940    3    3000    30833    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26168    69    0    20205    0    86    86    86    86    86    86    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    571    913    69    69    146    0    146    2    3735    1679057940    3    3000    30834    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26169    70    0    20892    0    86    86    86    86    86    86    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    590    944    70    70    147    0    147    2    3847    1679057940    3    3000    30835    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26170    71    0    21598    0    86    86    86    86    86    86    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    609    975    71    71    148    0    148    2    3963    1679057940    3    3000    30836    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26171    72    0    22323    0    87    87    87    87    87    87    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    629    1007    72    72    149    0    149    2    4082    1679057940    3    3000    30837    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26172    73    0    23069    0    87    87    87    87    87    87    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    650    1040    73    73    150    0    150    2    4204    1679057940    3    3000    30838    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26173    74    0    23836    0    87    87    87    87    87    87    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    671    1074    74    74    151    0    151    2    4330    1679057940    3    3000    30839    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26174    75    0    24625    0    87    87    87    87    87    87    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    693    1109    75    75    152    0    152    2    4460    1679057940    3    3000    30840    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26175    76    0    25435    0    87    87    87    87    87    87    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    716    1145    76    76    153    0    153    2    4594    1679057940    3    3000    30841    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26176    77    0    26268    0    87    87    87    87    87    87    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    739    1182    77    77    154    0    154    2    4732    1679057940    3    3000    30842    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26177    78    0    27124    0    88    88    88    88    88    88    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    763    1220    78    78    155    0    155    2    4874    1679057940    3    3000    30843    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26178    79    0    28004    0    88    88    88    88    88    88    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    787    1259    79    79    156    0    156    2    5020    1679057940    3    3000    30844    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26179    80    0    28908    0    88    88    88    88    88    88    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    812    1300    80    80    157    0    157    2    5170    1679057940    3    3000    30845    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26180    81    0    29838    0    88    88    88    88    88    88    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    838    1341    81    81    158    0    158    2    5326    1679057940    3    3000    30846    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26181    82    0    30792    0    88    88    88    88    88    88    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    864    1383    82    82    159    0    159    2    5485    1679057940    3    3000    30847    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26182    83    0    31774    0    88    88    88    88    88    88    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    892    1427    83    83    160    0    160    2    5650    1679057940    3    3000    30848    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26183    84    0    32782    0    88    88    88    88    88    88    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    920    1471    84    84    161    0    161    2    5819    1679057940    3    3000    30849    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26184    85    0    33817    0    88    88    88    88    88    88    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    948    1517    85    85    162    0    162    2    5994    1679057940    3    3000    30850    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26185    86    0    34881    0    89    89    89    89    89    89    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    978    1564    86    86    163    0    163    2    6174    1679057940    3    3000    30851    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26186    87    0    35974    0    89    89    89    89    89    89    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1008    1613    87    87    164    0    164    2    6359    1679057940    3    3000    30852    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26187    88    0    37097    0    89    89    89    89    89    89    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1039    1663    88    88    165    0    165    2    6550    1679057940    3    3000    30853    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26188    89    0    38250    0    89    89    89    89    89    89    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1071    1714    89    89    166    0    166    2    6746    1679057940    3    3000    30854    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26189    90    0    39434    0    89    89    89    89    89    89    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1104    1766    90    90    167    0    167    2    6949    1679057940    3    3000    30855    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26190    91    0    40651    0    89    89    89    89    89    89    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1138    1820    91    91    168    0    168    2    7157    1679057940    3    3000    30856    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26191    92    0    41901    0    89    89    89    89    89    89    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1172    1875    92    92    169    0    169    2    7372    1679057940    3    3000    30857    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26192    93    0    43184    0    89    89    89    89    89    89    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1208    1932    93    93    170    0    170    2    7593    1679057940    3    3000    30858    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26193    94    0    44501    0    89    89    89    89    89    89    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1244    1991    94    94    171    0    171    2    7821    1679057940    3    3000    30859    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26194    95    0    45855    0    90    90    90    90    90    90    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1282    2051    95    95    172    0    172    2    8055    1679057940    3    3000    30860    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26195    96    0    47244    0    90    90    90    90    90    90    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1320    2112    96    96    173    0    173    2    8297    1679057940    3    3000    30861    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26196    97    0    48671    0    90    90    90    90    90    90    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1360    2175    97    97    174    0    174    2    8546    1679057940    3    3000    30862    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26197    98    0    50136    0    90    90    90    90    90    90    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1400    2240    98    98    175    0    175    2    8802    1679057940    3    3000    30863    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26198    99    0    51640    0    90    90    90    90    90    90    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1442    2307    99    99    176    0    176    2    9066    1679057940    3    3000    30864    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26199    100    0    53184    0    90    90    90    90    90    90    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1484    2375    100    100    177    0    177    2    9338    1679057940    3    3000    30865    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26200    101    0    54770    0    90    90    90    90    90    90    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1528    2445    101    101    178    0    178    2    9619    1679057940    3    3000    30866    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26201    102    0    56397    0    90    90    90    90    90    90    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1573    2517    102    102    179    0    179    2    9907    1679057940    3    3000    30867    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26202    103    0    58068    0    90    90    90    90    90    90    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1619    2591    103    103    180    0    180    2    10204    1679057940    3    3000    30868    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26203    104    0    59782    0    90    90    90    90    90    90    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1667    2667    104    104    181    0    181    2    10511    1679057940    3    3000    30869    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26204    105    0    61543    0    90    90    90    90    90    90    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1715    2745    105    105    182    0    182    2    10826    1679057940    3    3000    30870    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26205    106    0    63350    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1765    2825    106    106    183    0    183    2    11151    1679057940    3    3000    30871    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26206    107    0    65204    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1817    2907    107    107    184    0    184    2    11485    1679057940    3    3000    30872    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26207    108    0    67107    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1869    2991    108    108    185    0    185    2    11830    1679057940    3    3000    30873    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26208    109    0    69060    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1923    3077    109    109    186    0    186    2    12185    1679057940    3    3000    30874    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26209    110    0    71065    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    1978    3166    110    110    187    0    187    2    12550    1679057940    3    3000    30875    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26210    111    0    73122    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2035    3256    111    111    188    0    188    2    12927    1679057940    3    3000    30876    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26211    112    0    75233    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2094    3350    112    112    189    0    189    2    13314    1679057940    3    3000    30877    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26212    113    0    77399    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2153    3445    113    113    190    0    190    2    13714    1679057940    3    3000    30878    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26213    114    0    79622    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2215    3544    114    114    191    0    191    2    14125    1679057940    3    3000    30789    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26214    115    0    81903    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2278    3644    115    115    192    0    192    2    14549    1679057940    3    3000    30880    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26215    116    0    84243    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2342    3748    116    116    193    0    193    2    14985    1679057940    3    3000    30881    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26216    117    0    86644    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2409    3854    117    117    194    0    194    2    15435    1679057940    3    3000    30882    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26217    118    0    89107    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2477    3963    118    118    195    0    195    2    15898    1679057940    3    3000    30883    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26218    119    0    91634    0    91    91    91    91    91    91    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2546    4074    119    119    196    0    196    2    16375    1679057940    3    3000    30884    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26219    120    0    94227    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2618    4189    120    120    197    0    197    2    16866    1679057940    3    3000    30885    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26220    121    0    96886    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2691    4306    121    121    198    0    198    2    17372    1679057940    3    3000    30886    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26221    122    0    99615    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2767    4427    122    122    199    0    199    2    17893    1679057940    3    3000    30887    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26222    123    0    102413    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2844    4550    123    123    200    0    200    2    18430    1679057940    3    3000    30888    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26223    124    0    105284    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    2923    4677    124    124    201    0    201    2    18983    1679057940    3    3000    30889    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26224    125    0    108229    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    3004    4807    125    125    202    0    202    2    19553    1679057940    3    3000    30890    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26225    126    0    111249    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    3087    4940    126    126    203    0    203    2    20139    1679057940    3    3000    30891    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26226    127    0    114347    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    3173    5077    127    127    204    0    204    2    20743    1679057940    3    3000    30892    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26227    128    0    117524    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    3261    5217    128    128    205    0    205    2    21366    1679057940    3    3000    30893    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26228    129    0    120783    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    3350    5361    129    129    206    0    206    2    22007    1679057940    3    3000    30894    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26229    130    0    124125    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    3442    5508    130    130    207    0    207    2    22667    1679057940    3    3000    30894    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26230    131    0    127552    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    3537    5659    131    131    208    0    208    2    23347    1679057940    3    3000    30895    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26231    132    0    131067    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    3634    5814    132    132    209    0    209    2    24047    1679057940    3    3000    30896    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26232    133    0    134672    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    3733    5973    133    133    210    0    210    2    24769    1679057940    3    3000    30897    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26233    134    0    138368    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    3835    6136    134    134    211    0    211    2    25512    1679057940    3    3000    30897    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26234    135    0    142158    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    3940    6303    135    135    212    0    212    2    26277    1679057940    3    3000    30897    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26235    136    0    146044    0    92    92    92    92    92    92    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    4047    6475    136    136    213    0    213    2    27065    1679057940    3    3000    30897    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26236    137    0    150029    0    93    93    93    93    93    93    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    4156    6650    137    137    214    0    214    2    27877    1679057940    3    3000    30897    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26237    138    0    154115    0    93    93    93    93    93    93    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    4269    6830    138    138    215    0    215    2    28714    1679057940    3    3000    30897    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26238    139    0    158304    0    93    93    93    93    93    93    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    4384    7015    139    139    216    0    216    2    29575    1679057940    3    3000    30897    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0
26239    140    0    162599    0    93    93    93    93    93    93    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    3    3    8    0    1    1    0    50    0    4503    7204    140    140    217    0    217    2    30462    1679057940    3    3000    30897    33738    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0    0 


_RefObjItem


كود PHP:

21425    1    2    0    0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    CREDDY_COS_P_BIRD_001    -1    xxx                                                                                                                                  -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    0    0    0 

CharacterData_45000


كود PHP:

1    50143    CREDDY_COS_P_BIRD_001    lv 1    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_002    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    3    0    0    0    0    0    50    75    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    1    0    360    0    0    0    0    0    0    1    1    0    0    0    8    13    1    1    27    0    27    2    24    1679057940    3    3000    30687    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50144    CREDDY_COS_P_BIRD_002    
lv 2    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_003    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    4    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    2    0    441    0    0    0    0    0    0    1    1    0    0    0    10    16    2    2    29    0    29    2    47    1679057940    3    3000    30688    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50145    CREDDY_COS_P_BIRD_003    
lv 3    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_004    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    4    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    3    0    524    0    0    0    0    0    0    1    1    0    0    0    12    20    3    3    31    0    31    2    71    1679057940    3    3000    30689    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50146    CREDDY_COS_P_BIRD_004    
lv 4    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_005    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    5    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    4    0    611    0    0    0    0    0    0    1    1    0    0    0    15    24    4    4    33    0    33    2    94    1679057940    3    3000    30690    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50147    CREDDY_COS_P_BIRD_005    
lv 5    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_006    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    6    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    5    0    701    0    0    0    0    0    0    1    1    0    0    0    18    28    5    5    35    0    35    2    118    1679057940    3    3000    30691    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50148    CREDDY_COS_P_BIRD_006    
lv 6    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_007    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    6    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    6    0    795    0    0    0    0    0    0    1    1    0    0    0    21    34    6    6    37    0    37    2    141    1679057940    3    3000    30692    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50149    CREDDY_COS_P_BIRD_007    
lv 7    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_008    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    7    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    7    0    892    0    0    0    0    0    0    1    1    0    0    0    25    39    7    7    39    0    39    2    165    1679057940    3    3000    30693    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50150    CREDDY_COS_P_BIRD_008    
lv 8    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_009    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    8    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    8    0    992    0    0    0    0    0    0    1    1    0    0    0    29    46    8    8    41    0    41    2    188    1679057940    3    3000    30694    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50151    CREDDY_COS_P_BIRD_009    
lv 9    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_010    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    8    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    9    0    1097    0    0    0    0    0    0    1    1    0    0    0    33    53    9    9    43    0    43    2    212    1679057940    3    3000    30695    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50152    CREDDY_COS_P_BIRD_010    
lv 10    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_011    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    9    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    10    0    1205    0    0    0    0    0    0    1    1    0    0    0    38    60    10    10    45    0    45    2    235    1679057940    3    3000    30696    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50153    CREDDY_COS_P_BIRD_011    
lv 11    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_012    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    10    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    11    0    1317    0    0    0    0    0    0    1    1    0    0    0    43    69    11    11    47    0    47    2    259    1679057940    3    3000    30697    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50154    CREDDY_COS_P_BIRD_012    
lv 12    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_013    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    11    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    12    0    1432    0    0    0    0    0    0    1    1    0    0    0    46    74    12    12    49    0    49    2    282    1679057940    3    3000    30698    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50155    CREDDY_COS_P_BIRD_013    
lv 13    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_014    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    11    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    13    0    1552    0    0    0    0    0    0    1    1    0    0    0    50    79    13    13    51    0    51    2    306    1679057940    3    3000    30699    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50156    CREDDY_COS_P_BIRD_014    
lv 14    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_015    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    12    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    14    0    1677    0    0    0    0    0    0    1    1    0    0    0    53    85    14    14    53    0    53    2    329    1679057940    3    3000    30700    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50157    CREDDY_COS_P_BIRD_015    
lv 15    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_016    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    13    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    15    0    1805    0    0    0    0    0    0    1    1    0    0    0    57    91    15    15    55    0    55    2    353    1679057940    3    3000    30701    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50158    CREDDY_COS_P_BIRD_016    
lv 16    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_017    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    14    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    16    0    1938    0    0    0    0    0    0    1    1    0    0    0    60    97    16    16    57    0    57    2    376    1679057940    3    3000    30702    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50159    CREDDY_COS_P_BIRD_017    
lv 17    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_018    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    15    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    17    0    2076    0    0    0    0    0    0    1    1    0    0    0    64    103    17    17    59    0    59    2    400    1679057940    3    3000    30703    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50160    CREDDY_COS_P_BIRD_018    
lv 18    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_019    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    16    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    18    0    2218    0    0    0    0    0    0    1    1    0    0    0    68    109    18    18    61    0    61    2    423    1679057940    3    3000    30704    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50161    CREDDY_COS_P_BIRD_019    
lv 19    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_020    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    17    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    19    0    2365    0    0    0    0    0    0    1    1    0    0    0    73    116    19    19    63    0    63    2    447    1679057940    3    3000    30705    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50162    CREDDY_COS_P_BIRD_020    
lv 20    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_021    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    18    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    20    0    2517    0    0    0    0    0    0    1    1    0    0    0    77    123    20    20    65    0    65    2    470    1679057940    3    3000    30706    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50163    CREDDY_COS_P_BIRD_021    
lv 21    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_022    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    19    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    21    0    2675    0    0    0    0    0    0    1    1    0    0    0    81    130    21    21    67    0    67    2    498    1679057940    3    3000    30707    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50164    CREDDY_COS_P_BIRD_022    
lv 22    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_023    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    20    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    22    0    2837    0    0    0    0    0    0    1    1    0    0    0    86    137    22    22    69    0    69    2    528    1679057940    3    3000    30708    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50165    CREDDY_COS_P_BIRD_023    
lv 23    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_024    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    21    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    23    0    3005    0    0    0    0    0    0    1    1    0    0    0    91    145    23    23    71    0    71    2    560    1679057940    3    3000    30709    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50166    CREDDY_COS_P_BIRD_024    
lv 24    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_025    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    22    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    24    0    3179    0    0    0    0    0    0    1    1    0    0    0    95    153    24    24    73    0    73    2    593    1679057940    3    3000    30710    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50167    CREDDY_COS_P_BIRD_025    
lv 25    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_026    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    24    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    25    0    3358    0    0    0    0    0    0    1    1    0    0    0    101    161    25    25    75    0    75    2    629    1679057940    3    3000    30711    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50168    CREDDY_COS_P_BIRD_026    
lv 26    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_027    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    25    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    26    0    3544    0    0    0    0    0    0    1    1    0    0    0    106    169    26    26    77    0    77    2    667    1679057940    3    3000    30712    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50169    CREDDY_COS_P_BIRD_027    
lv 27    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_028    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    26    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    27    0    3735    0    0    0    0    0    0    1    1    0    0    0    111    178    27    27    79    0    79    2    707    1679057940    3    3000    30713    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50170    CREDDY_COS_P_BIRD_028    
lv 28    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_029    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    28    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    28    0    3933    0    0    0    0    0    0    1    1    0    0    0    117    187    28    28    81    0    81    2    749    1679057940    3    3000    30714    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50171    CREDDY_COS_P_BIRD_029    
lv 29    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_030    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    29    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    29    0    4137    0    0    0    0    0    0    1    1    0    0    0    122    196    29    29    83    0    83    2    794    1679057940    3    3000    30715    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50172    CREDDY_COS_P_BIRD_030    
lv 30    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_031    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    30    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    30    0    4347    0    0    0    0    0    0    1    1    0    0    0    128    205    30    30    85    0    85    2    842    1679057940    3    3000    30716    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50173    CREDDY_COS_P_BIRD_031    
lv 31    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_032    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    32    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    31    0    4565    0    0    0    0    0    0    1    1    0    0    0    134    215    31    31    87    0    87    2    884    1679057940    3    3000    30717    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50174    CREDDY_COS_P_BIRD_032    
lv 32    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_033    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    33    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    32    0    4789    0    0    0    0    0    0    1    1    0    0    0    141    225    32    32    89    0    89    2    928    1679057940    3    3000    30718    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50175    CREDDY_COS_P_BIRD_033    
lv 33    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_034    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    35    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    33    0    5020    0    0    0    0    0    0    1    1    0    0    0    147    236    33    33    91    0    91    2    974    1679057940    3    3000    30719    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50176    CREDDY_COS_P_BIRD_034    
lv 34    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_035    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    37    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    34    0    5259    0    0    0    0    0    0    1    1    0    0    0    154    246    34    34    93    0    93    2    1023    1679057940    3    3000    30720    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50177    CREDDY_COS_P_BIRD_035    
lv 35    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_036    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    38    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    35    0    5506    0    0    0    0    0    0    1    1    0    0    0    161    257    35    35    95    0    95    2    1074    1679057940    3    3000    30721    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50178    CREDDY_COS_P_BIRD_036    
lv 36    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_037    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    40    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    36    0    5760    0    0    0    0    0    0    1    1    0    0    0    168    269    36    36    97    0    97    2    1128    1679057940    3    3000    30722    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50179    CREDDY_COS_P_BIRD_037    
lv 37    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_038    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    42    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    37    0    6022    0    0    0    0    0    0    1    1    0    0    0    175    280    37    37    99    0    99    2    1184    1679057940    3    3000    30723    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50180    CREDDY_COS_P_BIRD_038    
lv 38    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_039    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    44    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    38    0    6292    0    0    0    0    0    0    1    1    0    0    0    183    293    38    38    101    0    101    2    1244    1679057940    3    3000    30724    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50181    CREDDY_COS_P_BIRD_039    
lv 39    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_040    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    46    0    0    0    0    0    30    45    60    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    39    0    6571    0    0    0    0    0    0    1    1    0    0    0    191    305    39    39    103    0    103    2    1306    1679057940    3    3000    30725    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50182    CREDDY_COS_P_BIRD_040    
lv 40    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_041    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    47    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    40    0    6858    0    0    0    0    0    0    1    1    0    0    0    199    318    40    40    105    0    105    2    1371    1679057940    3    3000    30726    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50183    CREDDY_COS_P_BIRD_041    
lv 41    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_042    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    49    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    41    0    7154    0    0    0    0    0    0    1    1    0    0    0    207    331    41    41    107    0    107    2    1426    1679057940    3    3000    30727    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50184    CREDDY_COS_P_BIRD_042    
lv 42    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_043    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    52    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    42    0    7459    0    0    0    0    0    0    1    1    0    0    0    216    345    42    42    109    0    109    2    1483    1679057940    3    3000    30728    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50185    CREDDY_COS_P_BIRD_043    
lv 43    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_044    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    54    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    43    0    7774    0    0    0    0    0    0    1    1    0    0    0    224    359    43    43    111    0    111    2    1542    1679057940    3    3000    30729    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50186    CREDDY_COS_P_BIRD_044    
lv 44    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_045    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    56    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    44    0    8098    0    0    0    0    0    0    1    1    0    0    0    233    373    44    44    113    0    113    2    1604    1679057940    3    3000    30730    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50187    CREDDY_COS_P_BIRD_045    
lv 45    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_046    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    58    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    45    0    8432    0    0    0    0    0    0    1    1    0    0    0    243    388    45    45    115    0    115    2    1668    1679057940    3    3000    30731    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50188    CREDDY_COS_P_BIRD_046    
lv 46    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_047    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    60    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    46    0    8776    0    0    0    0    0    0    1    1    0    0    0    252    404    46    46    117    0    117    2    1735    1679057940    3    3000    30732    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50189    CREDDY_COS_P_BIRD_047    
lv 47    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_048    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    63    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    47    0    9131    0    0    0    0    0    0    1    1    0    0    0    262    420    47    47    119    0    119    2    1804    1679057940    3    3000    30733    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50190    CREDDY_COS_P_BIRD_048    
lv 48    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_049    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    65    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    48    0    9496    0    0    0    0    0    0    1    1    0    0    0    272    436    48    48    121    0    121    2    1876    1679057940    3    3000    30734    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50191    CREDDY_COS_P_BIRD_049    
lv 49    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_050    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    68    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    49    0    9872    0    0    0    0    0    0    1    1    0    0    0    283    453    49    49    123    0    123    2    1951    1679057940    3    3000    30735    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50192    CREDDY_COS_P_BIRD_050    
lv 50    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_051    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    71    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    50    0    10260    0    0    0    0    0    0    1    1    0    0    0    294    470    50    50    125    0    125    2    2029    1679057940    3    3000    30736    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50193    CREDDY_COS_P_BIRD_051    
lv 51    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_052    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    73    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    51    0    10659    0    0    0    0    0    0    1    1    0    0    0    305    488    51    51    127    0    127    2    2101    1679057940    3    3000    30737    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50194    CREDDY_COS_P_BIRD_052    
lv 52    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_053    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    76    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    52    0    11070    0    0    0    0    0    0    1    1    0    0    0    316    506    52    52    129    0    129    2    2174    1679057940    3    3000    30738    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50195    CREDDY_COS_P_BIRD_053    
lv 53    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_054    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    79    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    53    0    11493    0    0    0    0    0    0    1    1    0    0    0    328    525    53    53    130    0    130    2    2250    1679057940    3    3000    30739    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50196    CREDDY_COS_P_BIRD_054    
lv 54    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_055    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    82    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    54    0    11928    0    0    0    0    0    0    1    1    0    0    0    340    544    54    54    131    0    131    2    2329    1679057940    3    3000    30740    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50197    CREDDY_COS_P_BIRD_055    
lv 55    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_056    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    85    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    55    0    12376    0    0    0    0    0    0    1    1    0    0    0    353    564    55    55    132    0    132    2    2410    1679057940    3    3000    30741    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50198    CREDDY_COS_P_BIRD_056    
lv 56    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_057    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    88    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    56    0    12838    0    0    0    0    0    0    1    1    0    0    0    366    585    56    56    133    0    133    2    2495    1679057940    3    3000    30742    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50199    CREDDY_COS_P_BIRD_057    
lv 57    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_058    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    91    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    57    0    13313    0    0    0    0    0    0    1    1    0    0    0    379    606    57    57    134    0    134    2    2582    1679057940    3    3000    30743    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50200    CREDDY_COS_P_BIRD_058    
lv 58    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_059    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    94    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    58    0    13802    0    0    0    0    0    0    1    1    0    0    0    393    628    58    58    135    0    135    2    2672    1679057940    3    3000    30744    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50201    CREDDY_COS_P_BIRD_059    
lv 59    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_060    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    98    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    59    0    14305    0    0    0    0    0    0    1    1    0    0    0    407    650    59    59    136    0    136    2    2766    1679057940    3    3000    30745    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50202    CREDDY_COS_P_BIRD_060    
lv 60    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_061    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    101    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    60    0    14823    0    0    0    0    0    0    1    1    0    0    0    421    673    60    60    137    0    137    2    2863    1679057940    3    3000    30746    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50203    CREDDY_COS_P_BIRD_061    
lv 61    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_062    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    105    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    61    0    15355    0    0    0    0    0    0    1    1    0    0    0    436    697    61    61    138    0    138    2    2949    1679057940    3    3000    30747    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50204    CREDDY_COS_P_BIRD_062    
lv 62    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_063    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    109    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    62    0    15903    0    0    0    0    0    0    1    1    0    0    0    451    722    62    62    139    0    139    2    3037    1679057940    3    3000    30748    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50205    CREDDY_COS_P_BIRD_063    
lv 63    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_064    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    113    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    63    0    16467    0    0    0    0    0    0    1    1    0    0    0    467    747    63    63    140    0    140    2    3128    1679057940    3    3000    30749    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50206    CREDDY_COS_P_BIRD_064    
lv 64    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_065    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    116    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    64    0    17047    0    0    0    0    0    0    1    1    0    0    0    483    773    64    64    141    0    141    2    3222    1679057940    3    3000    30750    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50207    CREDDY_COS_P_BIRD_065    
lv 65    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_066    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    120    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    65    0    17644    0    0    0    0    0    0    1    1    0    0    0    499    799    65    65    142    0    142    2    3319    1679057940    3    3000    30751    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50208    CREDDY_COS_P_BIRD_066    
lv 66    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_067    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    125    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    66    0    18258    0    0    0    0    0    0    1    1    0    0    0    516    826    66    66    143    0    143    2    3418    1679057940    3    3000    30752    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50209    CREDDY_COS_P_BIRD_067    
lv 67    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_068    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    129    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    67    0    18889    0    0    0    0    0    0    1    1    0    0    0    534    854    67    67    144    0    144    2    3521    1679057940    3    3000    30753    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50210    CREDDY_COS_P_BIRD_068    
lv 68    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_069    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    133    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    68    0    19538    0    0    0    0    0    0    1    1    0    0    0    552    883    68    68    145    0    145    2    3626    1679057940    3    3000    30754    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50211    CREDDY_COS_P_BIRD_069    
lv 69    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_070    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    138    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    69    0    20205    0    0    0    0    0    0    1    1    0    0    0    571    913    69    69    146    0    146    2    3735    1679057940    3    3000    30755    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50212    CREDDY_COS_P_BIRD_070    
lv 70    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_071    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    142    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    70    0    20892    0    0    0    0    0    0    1    1    0    0    0    590    944    70    70    147    0    147    2    3847    1679057940    3    3000    30756    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50213    CREDDY_COS_P_BIRD_071    
lv 71    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_072    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    147    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    71    0    21598    0    0    0    0    0    0    1    1    0    0    0    609    975    71    71    148    0    148    2    3963    1679057940    3    3000    30757    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50214    CREDDY_COS_P_BIRD_072    
lv 72    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_073    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    152    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    72    0    22323    0    0    0    0    0    0    1    1    0    0    0    629    1007    72    72    149    0    149    2    4082    1679057940    3    3000    30758    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50215    CREDDY_COS_P_BIRD_073    
lv 73    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_074    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    157    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    73    0    23069    0    0    0    0    0    0    1    1    0    0    0    650    1040    73    73    150    0    150    2    4204    1679057940    3    3000    30759    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50216    CREDDY_COS_P_BIRD_074    
lv 74    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_075    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    162    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    74    0    23836    0    0    0    0    0    0    1    1    0    0    0    671    1074    74    74    151    0    151    2    4330    1679057940    3    3000    30760    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50217    CREDDY_COS_P_BIRD_075    
lv 75    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_076    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    168    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    75    0    24625    0    0    0    0    0    0    1    1    0    0    0    693    1109    75    75    152    0    152    2    4460    1679057940    3    3000    30761    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50218    CREDDY_COS_P_BIRD_076    
lv 76    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_077    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    173    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    76    0    25435    0    0    0    0    0    0    1    1    0    0    0    716    1145    76    76    153    0    153    2    4594    1679057940    3    3000    30762    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50219    CREDDY_COS_P_BIRD_077    
lv 77    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_078    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    179    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    77    0    26268    0    0    0    0    0    0    1    1    0    0    0    739    1182    77    77    154    0    154    2    4732    1679057940    3    3000    30763    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50220    CREDDY_COS_P_BIRD_078    
lv 78    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_079    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    185    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    78    0    27124    0    0    0    0    0    0    1    1    0    0    0    763    1220    78    78    155    0    155    2    4874    1679057940    3    3000    30764    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50221    CREDDY_COS_P_BIRD_079    
lv 79    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_080    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    190    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    79    0    28004    0    0    0    0    0    0    1    1    0    0    0    787    1259    79    79    156    0    156    2    5020    1679057940    3    3000    30765    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50222    CREDDY_COS_P_BIRD_080    
lv 80    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_081    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    197    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    80    0    28908    0    0    0    0    0    0    1    1    0    0    0    812    1300    80    80    157    0    157    2    5170    1679057940    3    3000    30766    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50223    CREDDY_COS_P_BIRD_081    
lv 81    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_082    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    203    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    81    0    29838    0    0    0    0    0    0    1    1    0    0    0    838    1341    81    81    158    0    158    2    5326    1679057940    3    3000    30767    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50224    CREDDY_COS_P_BIRD_082    
lv 82    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_083    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    209    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    82    0    30792    0    0    0    0    0    0    1    1    0    0    0    864    1383    82    82    159    0    159    2    5485    1679057940    3    3000    30768    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50225    CREDDY_COS_P_BIRD_083    
lv 83    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_084    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    216    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    83    0    31774    0    0    0    0    0    0    1    1    0    0    0    892    1427    83    83    160    0    160    2    5650    1679057940    3    3000    30769    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50226    CREDDY_COS_P_BIRD_084    
lv 84    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_085    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    223    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    84    0    32782    0    0    0    0    0    0    1    1    0    0    0    920    1471    84    84    161    0    161    2    5819    1679057940    3    3000    30770    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50227    CREDDY_COS_P_BIRD_085    
lv 85    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_086    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    230    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    85    0    33817    0    0    0    0    0    0    1    1    0    0    0    948    1517    85    85    162    0    162    2    5994    1679057940    3    3000    30771    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50228    CREDDY_COS_P_BIRD_086    
lv 86    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_087    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    237    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    86    0    34881    0    0    0    0    0    0    1    1    0    0    0    978    1564    86    86    163    0    163    2    6174    1679057940    3    3000    30772    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50229    CREDDY_COS_P_BIRD_087    
lv 87    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_088    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    244    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    87    0    35974    0    0    0    0    0    0    1    1    0    0    0    1008    1613    87    87    164    0    164    2    6359    1679057940    3    3000    30773    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50230    CREDDY_COS_P_BIRD_088    
lv 88    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_089    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    252    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    88    0    37097    0    0    0    0    0    0    1    1    0    0    0    1039    1663    88    88    165    0    165    2    6550    1679057940    3    3000    30774    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50231    CREDDY_COS_P_BIRD_089    
lv 89    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_090    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    260    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    89    0    38250    0    0    0    0    0    0    1    1    0    0    0    1071    1714    89    89    166    0    166    2    6746    1679057940    3    3000    30775    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50232    CREDDY_COS_P_BIRD_090    
lv 90    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_091    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    268    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    90    0    39434    0    0    0    0    0    0    1    1    0    0    0    1104    1766    90    90    167    0    167    2    6949    1679057940    3    3000    30776    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50233    CREDDY_COS_P_BIRD_091    
lv 91    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_092    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    276    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    91    0    40651    0    0    0    0    0    0    1    1    0    0    0    1138    1820    91    91    168    0    168    2    7157    1679057940    3    3000    30777    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50234    CREDDY_COS_P_BIRD_092    
lv 92    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_093    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    284    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    92    0    41901    0    0    0    0    0    0    1    1    0    0    0    1172    1875    92    92    169    0    169    2    7372    1679057940    3    3000    30778    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50235    CREDDY_COS_P_BIRD_093    
lv 93    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_094    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    293    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    93    0    43184    0    0    0    0    0    0    1    1    0    0    0    1208    1932    93    93    170    0    170    2    7593    1679057940    3    3000    30779    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50236    CREDDY_COS_P_BIRD_094    
lv 94    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_095    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    302    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    94    0    44501    0    0    0    0    0    0    1    1    0    0    0    1244    1991    94    94    171    0    171    2    7821    1679057940    3    3000    30780    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50237    CREDDY_COS_P_BIRD_095    
lv 95    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_096    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    311    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    95    0    45855    0    0    0    0    0    0    1    1    0    0    0    1282    2051    95    95    172    0    172    2    8055    1679057940    3    3000    30781    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50238    CREDDY_COS_P_BIRD_096    
lv 96    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_097    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    320    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    96    0    47244    0    0    0    0    0    0    1    1    0    0    0    1320    2112    96    96    173    0    173    2    8297    1679057940    3    3000    30782    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50239    CREDDY_COS_P_BIRD_097    
lv 97    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_098    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    330    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    97    0    48671    0    0    0    0    0    0    1    1    0    0    0    1360    2175    97    97    174    0    174    2    8546    1679057940    3    3000    30783    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50240    CREDDY_COS_P_BIRD_098    
lv 98    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_099    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    340    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    98    0    50136    0    0    0    0    0    0    1    1    0    0    0    1400    2240    98    98    175    0    175    2    8802    1679057940    3    3000    30784    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50241    CREDDY_COS_P_BIRD_099    
lv 99    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_100    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    350    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    99    0    51640    0    0    0    0    0    0    1    1    0    0    0    1442    2307    99    99    176    0    176    2    9066    1679057940    3    3000    30785    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50242    CREDDY_COS_P_BIRD_100    
lv 100    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_101    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    360    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    100    0    53184    0    0    0    0    0    0    1    1    0    0    0    1484    2375    100    100    177    0    177    2    9338    1679057940    3    3000    30786    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50243    CREDDY_COS_P_BIRD_101    
lv 101    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_102    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    371    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    101    0    54770    0    0    0    0    0    0    1    1    0    0    0    1528    2445    101    101    178    0    178    2    9619    1679057940    3    3000    30787    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50244    CREDDY_COS_P_BIRD_102    
lv 102    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_103    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    382    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    102    0    56397    0    0    0    0    0    0    1    1    0    0    0    1573    2517    102    102    179    0    179    2    9907    1679057940    3    3000    30788    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50245    CREDDY_COS_P_BIRD_103    
lv 103    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_104    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    393    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    103    0    58068    0    0    0    0    0    0    1    1    0    0    0    1619    2591    103    103    180    0    180    2    10204    1679057940    3    3000    30789    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50246    CREDDY_COS_P_BIRD_104    
lv 104    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_105    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    405    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    104    0    59782    0    0    0    0    0    0    1    1    0    0    0    1667    2667    104    104    181    0    181    2    10511    1679057940    3    3000    30790    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50247    CREDDY_COS_P_BIRD_105    
lv 105    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_106    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    417    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    105    0    61543    0    0    0    0    0    0    1    1    0    0    0    1715    2745    105    105    182    0    182    2    10826    1679057940    3    3000    30791    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50248    CREDDY_COS_P_BIRD_106    
lv 106    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_107    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    429    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    106    0    63350    0    0    0    0    0    0    1    1    0    0    0    1765    2825    106    106    183    0    183    2    11151    1679057940    3    3000    30792    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50249    CREDDY_COS_P_BIRD_107    
lv 107    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_108    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    441    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    107    0    65204    0    0    0    0    0    0    1    1    0    0    0    1817    2907    107    107    184    0    184    2    11485    1679057940    3    3000    30793    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50250    CREDDY_COS_P_BIRD_108    
lv 108    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_109    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    454    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    108    0    67107    0    0    0    0    0    0    1    1    0    0    0    1869    2991    108    108    185    0    185    2    11830    1679057940    3    3000    30794    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50251    CREDDY_COS_P_BIRD_109    
lv 109    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_110    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    467    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    109    0    69060    0    0    0    0    0    0    1    1    0    0    0    1923    3077    109    109    186    0    186    2    12185    1679057940    3    3000    30795    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50252    CREDDY_COS_P_BIRD_110    
lv 110    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_111    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    481    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    110    0    71065    0    0    0    0    0    0    1    1    0    0    0    1978    3166    110    110    187    0    187    2    12550    1679057940    3    3000    30796    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50253    CREDDY_COS_P_BIRD_111    
lv 111    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_112    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    495    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    111    0    73122    0    0    0    0    0    0    1    1    0    0    0    2035    3256    111    111    188    0    188    2    12927    1679057940    3    3000    30797    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50254    CREDDY_COS_P_BIRD_112    
lv 112    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_113    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    509    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    112    0    75233    0    0    0    0    0    0    1    1    0    0    0    2094    3350    112    112    189    0    189    2    13314    1679057940    3    3000    30798    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50255    CREDDY_COS_P_BIRD_113    
lv 113    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_114    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    523    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    113    0    77399    0    0    0    0    0    0    1    1    0    0    0    2153    3445    113    113    190    0    190    2    13714    1679057940    3    3000    30799    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50256    CREDDY_COS_P_BIRD_114    
lv 114    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_115    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    538    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    114    0    79622    0    0    0    0    0    0    1    1    0    0    0    2215    3544    114    114    191    0    191    2    14125    1679057940    3    3000    30800    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50257    CREDDY_COS_P_BIRD_115    
lv 115    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_116    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    554    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    115    0    81903    0    0    0    0    0    0    1    1    0    0    0    2278    3644    115    115    192    0    192    2    14549    1679057940    3    3000    30801    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50258    CREDDY_COS_P_BIRD_116    
lv 116    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_117    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    569    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    116    0    84243    0    0    0    0    0    0    1    1    0    0    0    2342    3748    116    116    193    0    193    2    14985    1679057940    3    3000    30802    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50259    CREDDY_COS_P_BIRD_117    
lv 117    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_118    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    586    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    117    0    86644    0    0    0    0    0    0    1    1    0    0    0    2409    3854    117    117    194    0    194    2    15435    1679057940    3    3000    30803    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50260    CREDDY_COS_P_BIRD_118    
lv 118    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_119    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    602    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    118    0    89107    0    0    0    0    0    0    1    1    0    0    0    2477    3963    118    118    195    0    195    2    15898    1679057940    3    3000    30804    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50261    CREDDY_COS_P_BIRD_119    
lv 119    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_120    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    619    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    119    0    91634    0    0    0    0    0    0    1    1    0    0    0    2546    4074    119    119    196    0    196    2    16375    1679057940    3    3000    30805    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50262    CREDDY_COS_P_BIRD_120    
lv 120    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_121    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    637    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    120    0    94227    0    0    0    0    0    0    1    1    0    0    0    2618    4189    120    120    197    0    197    2    16866    1679057940    3    3000    30806    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50263    CREDDY_COS_P_BIRD_121    
lv 121    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_122    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    655    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    121    0    96886    0    0    0    0    0    0    1    1    0    0    0    2691    4306    121    121    198    0    198    2    17372    1679057940    3    3000    30807    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50264    CREDDY_COS_P_BIRD_122    
lv 122    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_123    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    673    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    122    0    99615    0    0    0    0    0    0    1    1    0    0    0    2767    4427    122    122    199    0    199    2    17893    1679057940    3    3000    30808    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50265    CREDDY_COS_P_BIRD_123    
lv 123    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_124    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    692    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    123    0    102413    0    0    0    0    0    0    1    1    0    0    0    2844    4550    123    123    200    0    200    2    18430    1679057940    3    3000    30809    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50266    CREDDY_COS_P_BIRD_124    
lv 124    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_125    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    711    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    124    0    105284    0    0    0    0    0    0    1    1    0    0    0    2923    4677    124    124    201    0    201    2    18983    1679057940    3    3000    30810    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50267    CREDDY_COS_P_BIRD_125    
lv 125    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_126    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    731    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    125    0    108229    0    0    0    0    0    0    1    1    0    0    0    3004    4807    125    125    202    0    202    2    19553    1679057940    3    3000    30811    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50268    CREDDY_COS_P_BIRD_126    
lv 126    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_127    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    751    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    126    0    111249    0    0    0    0    0    0    1    1    0    0    0    3087    4940    126    126    203    0    203    2    20139    1679057940    3    3000    30812    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50269    CREDDY_COS_P_BIRD_127    
lv 127    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_128    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    772    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    127    0    114347    0    0    0    0    0    0    1    1    0    0    0    3173    5077    127    127    204    0    204    2    20743    1679057940    3    3000    30813    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50270    CREDDY_COS_P_BIRD_128    
lv 128    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_129    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    793    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    128    0    117524    0    0    0    0    0    0    1    1    0    0    0    3261    5217    128    128    205    0    205    2    21366    1679057940    3    3000    30814    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50271    CREDDY_COS_P_BIRD_129    
lv 129    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_130    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    815    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    129    0    120783    0    0    0    0    0    0    1    1    0    0    0    3350    5361    129    129    206    0    206    2    22007    1679057940    3    3000    30815    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50272    CREDDY_COS_P_BIRD_130    
lv 130    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_131    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    838    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    130    0    124125    0    0    0    0    0    0    1    1    0    0    0    3442    5508    130    130    207    0    207    2    22667    1679057940    3    3000    30816    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50273    CREDDY_COS_P_BIRD_131    
lv 131    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_132    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    861    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    131    0    127552    0    0    0    0    0    0    1    1    0    0    0    3537    5659    131    131    208    0    208    2    23347    1679057940    3    3000    30817    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50274    CREDDY_COS_P_BIRD_132    
lv 132    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_133    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    884    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    132    0    131067    0    0    0    0    0    0    1    1    0    0    0    3634    5814    132    132    209    0    209    2    24047    1679057940    3    3000    30818    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50275    CREDDY_COS_P_BIRD_133    
lv 133    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_134    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    909    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    133    0    134672    0    0    0    0    0    0    1    1    0    0    0    3733    5973    133    133    210    0    210    2    24769    1679057940    3    3000    30819    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50276    CREDDY_COS_P_BIRD_134    
lv 134    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_135    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    934    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    134    0    138368    0    0    0    0    0    0    1    1    0    0    0    3835    6136    134    134    211    0    211    2    25512    1679057940    3    3000    30820    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50277    CREDDY_COS_P_BIRD_135    
lv 135    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_136    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    959    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    135    0    142158    0    0    0    0    0    0    1    1    0    0    0    3940    6303    135    135    212    0    212    2    26277    1679057940    3    3000    30821    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50278    CREDDY_COS_P_BIRD_136    
lv 136    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_137    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    985    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    136    0    146044    0    0    0    0    0    0    1    1    0    0    0    4047    6475    136    136    213    0    213    2    27065    1679057940    3    3000    30822    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50279    CREDDY_COS_P_BIRD_137    
lv 137    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_138    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    1012    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    137    0    150029    0    0    0    0    0    0    1    1    0    0    0    4156    6650    137    137    214    0    214    2    27877    1679057940    3    3000    30823    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50280    CREDDY_COS_P_BIRD_138    
lv 138    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_139    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    1039    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    138    0    154115    0    0    0    0    0    0    1    1    0    0    0    4269    6830    138    138    215    0    215    2    28714    1679057940    3    3000    30824    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50281    CREDDY_COS_P_BIRD_139    
lv 139    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    CREDDY_COS_P_BIRD_140    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    1068    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    139    0    158304    0    0    0    0    0    0    1    1    0    0    0    4384    7015    139    139    216    0    216    2    29575    1679057940    3    3000    30825    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0
1    50282    CREDDY_COS_P_BIRD_140    
lv 140    COS_P_BEAR_001    SN_PET2_ASS_BIRD_A    xxx    0    1    1    2    3    3    5000    3    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    -1    0    -1    0    -1    0    -1    0    1097    0    0    0    0    0    45    68    90    0    4    0    pet2\pet_bird_a_saddle.bsr    xxx    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    140    0    162599    0    0    0    0    0    0    1    1    0    0    0    4503    7204    140    140    217    0    217    2    30462    1679057940    3    3000    30826    0    0    0    0    0    0    0    0    0    0    0    0    0    5    0    0    0    0    0    0 


ItemData_45000


كود PHP:

1    50142    ITEM_CREDDY_COS_P_BIRD_SCROLL    ? ?????    xxx    SN_ITEM_CREDDY_COS_P_BIRD_SCROLL    SN_ITEM_CREDDY_COS_P_BIRD_SCROLL_TT_DESC    1    0    3    2    1    1    180000    3    0    1    1    1    223    0    1    0    0    1    0    0    0    0    0    0    0    1    5    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    xxx    item\etc\drop_ch_acc.bsr    pet2\item\item_pet2_scroll_ass_bird_a.ddj    xxx    xxx    1    2    0    0    1    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0    0    0    0    0    0    0    0    0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    0.0    -1    CREDDY_COS_P_BIRD_001    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    -1    xxx    0    0 


الفايلات في الكلينت : http://www.mediafire.com/?ie7rciw1o6d5n55

GM Secret 04-08-2012 09:08 AM

طب سؤال
البيت ده
بينزل Attack بس
وللا ليه الأيتمز بتاعتو كمان ؟

JanGanSRO 04-08-2012 09:17 AM

لول

و الله يا بنى انت لازم تكون مشرف للقسم دة

:wave:

shasha800 04-08-2012 06:11 PM

اقتباس:

المشاركة الأصلية كتبت بواسطة gm secret (المشاركة 4274047)
طب سؤال
البيت ده
بينزل attack بس
وللا ليه الأيتمز بتاعتو كمان ؟

بص يا باشا البيت ده نازل من غير بج زي البيتس التانيه أما بالنسبة للسكيلز

ديه موجودة في الكونسول ( الأيتمز ) في سكيل كولد و فاير و لايت ( هجبلك الكود بتاعهم ) بتزود في الفيزيكل و الماجيك أتاك 20%

Hector_ 04-08-2012 06:44 PM

م وضوع جامد جدا يا برنس تسلم

shasha800 04-08-2012 08:18 PM

اقتباس:

المشاركة الأصلية كتبت بواسطة hector_ (المشاركة 4274639)
م وضوع جامد جدا يا برنس تسلم

شكرا ليك علي علي الرد الجميل ده

shasha800 04-08-2012 08:30 PM

اقتباس:

المشاركة الأصلية كتبت بواسطة JanGanSRO (المشاركة 4274055)
لول

و الله يا بنى انت لازم تكون مشرف للقسم دة

:wave:

ألف شكر علي ردك الجميل يسمع من بقك ربنا

:smiliesmaker_h4h:

shasha800 04-08-2012 08:38 PM

عايز تحفيز أكتر و أن شاء الله كل لما ألاقي حاجة جديدة هجيبها

GM Secret 04-08-2012 11:29 PM

اقتباس:

المشاركة الأصلية كتبت بواسطة shasha800 (المشاركة 4274585)
بص يا باشا البيت ده نازل من غير بج زي البيتس التانيه أما بالنسبة للسكيلز

ديه موجودة في الكونسول ( الأيتمز ) في سكيل كولد و فاير و لايت ( هجبلك الكود بتاعهم ) بتزود في الفيزيكل و الماجيك أتاك 20%

أوكي مستنيك

ღ♥CarLeTo♥ღ 05-08-2012 12:41 AM

تسلم

shasha800 07-08-2012 02:38 AM

فين الردود يا شباب ؟

الموضوع وحش ؟ لو وحش يرجي حذفه من قبل الادارة

AssassinCr 07-08-2012 03:21 AM

بأمانة انتا فنان .. عبقري بس شيل كلمة انشاء الله وحط بدلها إن شاء الله عشان كلمة انشاء دي ليها معني تاني خالص وانا عارف ان نيتك سليمة :jump::jump:

mats0o0o0 07-08-2012 04:45 AM

لا تمام الله ينور عليك

shasha800 07-08-2012 06:58 PM

تسلموا يا رجالة المنتدي

●♥ Marwan1337 ♥● 07-08-2012 07:15 PM

شكرا ... !!
بس ياريت تبقا تضيف اى حاجة جديدة للموضوع نفسوا عشان السبام .....

Revog16 17-08-2012 04:21 PM

بأمانا مقيش احسن من كده الله ينهور عاوزين بقى ال New Pets

™Anas™ 11-10-2012 11:16 PM

1 - تعمل فايل Text Document جديد

http://www4.0zz0.com/2012/08/04/03/553929821.gif

2 - تفتح برنامج Microsoft SQL Server Managnment Studio

http://www4.0zz0.com/2012/08/04/03/553929821.gif

3 - تقوم بأخذ أخر سطر في _RefObjCommon كوبي و هو غالبا بيكون ده


كود PHP:

1    199    ITEM_CH_TBLADE_07_C    ?? ???    xxx    SN_ITEM_CH_TBLADE_07_C    SN_ITEM_CH_TBLADE_07_C_TT_DESC    0    0    3    1    6    5    180000    0    0    1    1    1    255    3    1    1    1    0    0    1216000    2814    4221    0    9000    425600    1    60    -1    0    -1    0    -1    0    -1    0    0    0    0    0    0    0    100    0    0    0    item\china\weapon\tblade_07.bsr    item\etc\drop_ch_equip.bsr    item\china\weapon\tblade_07.ddj    xxx    xxx    199 

خدوا كوبي من ال SQL مش من هنا

http://www4.0zz0.com/2012/08/04/03/553929821.gif

5 - هتعمل زي منا عامل بقي

1 - http://www11.0zz0.com/2012/08/04/03/645242036.png

http://www4.0zz0.com/2012/08/04/03/553929821.gif

2 - http://www11.0zz0.com/2012/08/04/03/123093807.png

http://www4.0zz0.com/2012/08/04/03/553929821.gif

3 - http://www11.0zz0.com/2012/08/04/03/712606859.png

http://www4.0zz0.com/2012/08/04/03/553929821.gif[/QUOTE]

hady55 13-10-2012 03:29 PM

مفيد جدا

Dallin 22-11-2012 07:10 PM

واللة موضوع اكتر من رائع بس انا ان شاء اللة هجبلك كويرى لفتح سكيلات الاكونت كلة

SweeTLove 01-01-2013 04:14 PM

بـــرناس :blowup::blowup:

yeayeayea 01-01-2013 08:37 PM

مشكور

xxxlitaxxx 01-01-2013 09:50 PM

معلش انا جتلى مشكله وانا بضيف الافتار العربى الجديد جيت احطوا فى _RefObjItem مش راضى يتحط ظبط المسافات عملت كل حاجه
مش عايز يضاف فيها ياريت لو فى حل :(

miro181 06-01-2013 12:49 AM

if i want to make an update

elfr3on2010 06-01-2013 03:51 AM

اكيد موضوع جامد وانا استفدت منة


الساعة الآن 03:46 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions, Inc.