You last visited: Today at 18:18
Advertisement
Illumine Guild Buffs
Discussion on Illumine Guild Buffs within the Flyff Private Server forum part of the Flyff category.
04/05/2018, 08:24
#1
elite*gold: 0
Join Date: Mar 2017
Posts: 342
Received Thanks: 18
Illumine Guild Buffs
can anyone help me how to make an entry to spec_item.txt i try to leech guild buffs feature on illumine source and i try to create a new entry to my spec_item but its not working. after i use the entire item it will gone and i got no option effects on my character btw check out my whole entries below
User.cpp what i leech from illumine
#ifdef __SECURITY_FIXES
if( GetWorld() && GetWorld()->GetID() == WI_WORLD_GUILDWAR || GetWorld() && GetWorld()->GetID() == WI_WORLD_RHYOS )
g_DPCoreClient.SendGCRemoveParty( GetPartyId(), m_idPlayer );
#endif // __SECURITY_FIXES
if( IsLive() )
{
#ifdef __GUILDBUFF
if(this->GetGuild() != NULL )
{
if( this->GetGuild()->m_nLevel >= 10){
if( !this->HasBuff( BUFF_ITEM, II_SYS_SYS_GUILDBUFF_LV10 ) )
{
ItemProp* pProp = prj.GetItemProp( II_SYS_SYS_GUILDBUFF_LV10 );
if( pProp )
this->DoApplySkill( this, pProp, NULL );
}
}
if(this->GetGuild()->m_nLevel >= 20)
{
if( !this->HasBuff( BUFF_ITEM, II_SYS_SYS_GUILDBUFF_LV20 ) )
{
ItemProp* pProp = prj.GetItemProp( II_SYS_SYS_GUILDBUFF_LV20 );
if( pProp )
this->DoApplySkill( this, pProp, NULL );
}
}
if(this->GetGuild()->m_nLevel >= 30)
{
if( !this->HasBuff( BUFF_ITEM, II_SYS_SYS_GUILDBUFF_LV30 ) )
{
ItemProp* pProp = prj.GetItemProp( II_SYS_SYS_GUILDBUFF_LV30 );
if( pProp )
this->DoApplySkill( this, pProp, NULL );
}
}
if(this->GetGuild()->m_nLevel >= 40)
{
if( !this->HasBuff( BUFF_ITEM, II_SYS_SYS_GUILDBUFF_LV40 ) )
{
ItemProp* pProp = prj.GetItemProp( II_SYS_SYS_GUILDBUFF_LV40 );
if( pProp )
this->DoApplySkill( this, pProp, NULL );
}
}
if(this->GetGuild()->m_nLevel >= 50)
{
if( !this->HasBuff( BUFF_ITEM, II_SYS_SYS_GUILDBUFF_LV50 ) )
{
ItemProp* pProp = prj.GetItemProp( II_SYS_SYS_GUILDBUFF_LV50 );
if( pProp )
this->DoApplySkill( this, pProp, NULL );
}
}
}
#endif // __GUILDBUFF
if( m_dwFlag & MVRF_MEDITATION_SIT )
{
if( m_pActMover->IsStateFlag( OBJSTAF_SIT ) )
{
m_dwFlag &= (~MVRF_MEDITATION_SIT);
}
else
{
if( SendActMsg( OBJMSG_SITDOWN ) == 1 )
{
ClearDest();
ClearDestAngle();
memset( &m_CorrAction, 0, sizeof(CORR_ACTION) );
g_UserMng.AddMotion( this, OBJMSG_SITDOWN );
m_dwFlag &= (~MVRF_MEDITATION_SIT);
}
}
}
propItem.txt of illumine
11 II_SYS_SYS_GUILDBUFF_LV10 "Buff of Guild Damage" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = = = 0 = = = = = = = 0 = = 1 = = = = = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_ATKPOWER_RATE = = 5 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXCHAN01 = = = = 1000000 = WUI_NOW = = = = = = = = = 0 0 0 0 0 0 = = = = = = = = = = = = = = = = """Skill_GUILDBUFF10.dds""" 0 """""" ""
11 II_SYS_SYS_GUILDBUFF_LV20 "Buff of Guild Hp" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = = = 0 = = = = = = = 0 = = 1 = = = = = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_HP_MAX_RATE = = 5 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXCHAN01 = = = = 1000000 = WUI_NOW = = = = = = = = = 0 0 0 0 0 0 = = = = = = = = = = = = = = = = """Skill_GUILDBUFF20.dds""" 0 """""" ""
11 II_SYS_SYS_GUILDBUFF_LV30 "Buff of Guild Speed" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = = = 0 = = = = = = = 0 = = 1 = = = = = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_SPEED = = 10 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXCHAN01 = = = = 1000000 = WUI_NOW = = = = = = = = = 0 0 0 0 0 0 = = = = = = = = = = = = = = = = """Skill_GUILDBUFF30.dds""" 0 """""" ""
11 II_SYS_SYS_GUILDBUFF_LV40 "Buff of Guild PVE Damage" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = = = 0 = = = = = = = 0 = = 1 = = = = = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_MONSTER_DMG = = 5 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXCHAN01 = = = = 1000000 = WUI_NOW = = = = = = = = = 0 0 0 0 0 0 = = = = = = = = = = = = = = = = """Skill_GUILDBUFF40.dds""" 0 """""" ""
11 II_SYS_SYS_GUILDBUFF_LV50 "Buff of Guild EXP" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = = = 0 = = = = = = = 0 = = 1 = = = = = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_EXPERIENCE = = 10 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXCHAN01 = = = = 1000000 = WUI_NOW = = = = = = = = = 0 0 0 0 0 0 = = = = = = = = = = = = = = = = """Skill_GUILDBUFF50.dds""" 0 """""" ""
Spec_Item.txt this what i use in.
6 II_SYS_SYS_GUILDBUFF_LV10 "Buff of Guild Damage" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = 1 = 3000000 = = = = = = = 0 = = 1 4 1 1 1 = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_ATKPOWER_RATE = = 5 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXPAN01 = = = 7200 = = WUI_NOW = = = = = = = = = 0 0 0 0 0 = = = = = = = = = = = = = = = = = """Skill_GUILDBUFF10.dds""" 0 """""" "GUILD BUFF TEST" 1 300 0 0 1 0 0 0 0 0 2 = = = = = = = = = = 1 1 1 1 1 0
6 II_SYS_SYS_GUILDBUFF_LV20 "Buff of Guild HP" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = 1 = 3000000 = = = = = = = 0 = = 1 4 1 1 1 = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_ATKPOWER_RATE = = 5 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXPAN01 = = = 7200 = = WUI_NOW = = = = = = = = = 0 0 0 0 0 = = = = = = = = = = = = = = = = = """Skill_GUILDBUFF20.dds""" 0 """""" "GUILD BUFF TEST" 1 300 0 0 1 0 0 0 0 0 2 = = = = = = = = = = 1 1 1 1 1 0
6 II_SYS_SYS_GUILDBUFF_LV30 "Buff of Guild Speed" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = 1 = 3000000 = = = = = = = 0 = = 1 4 1 1 1 = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_ATKPOWER_RATE = = 5 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXPAN01 = = = 7200 = = WUI_NOW = = = = = = = = = 0 0 0 0 0 = = = = = = = = = = = = = = = = = """Skill_GUILDBUFF30.dds""" 0 """""" "GUILD BUFF TEST" 1 300 0 0 1 0 0 0 0 0 2 = = = = = = = = = = 1 1 1 1 1 0
6 II_SYS_SYS_GUILDBUFF_LV40 "Buff of Guild PVE Damage" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = 1 = 3000000 = = = = = = = 0 = = 1 4 1 1 1 = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_ATKPOWER_RATE = = 5 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXPAN01 = = = 7200 = = WUI_NOW = = = = = = = = = 0 0 0 0 0 = = = = = = = = = = = = = = = = = """Skill_GUILDBUFF40.dds""" 0 """""" "GUILD BUFF TEST" 1 300 0 0 1 0 0 0 0 0 2 = = = = = = = = = = 1 1 1 1 1 0
6 II_SYS_SYS_GUILDBUFF_LV50 "Buff of Guild EXP" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = 1 = 3000000 = = = = = = = 0 = = 1 4 1 1 1 = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_ATKPOWER_RATE = = 5 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXPAN01 = = = 7200 = = WUI_NOW = = = = = = = = = 0 0 0 0 0 = = = = = = = = = = = = = = = = = """Skill_GUILDBUFF50.dds""" 0 """""" "GUILD BUFF TEST" 1 300 0 0 1 0 0 0 0 0 2 = = = = = = = = = = 1 1 1 1 1 0
04/05/2018, 13:33
#2
elite*gold: 60
Join Date: Sep 2017
Posts: 424
Received Thanks: 138
Error Log ?
04/05/2018, 14:15
#3
elite*gold: 0
Join Date: Mar 2017
Posts: 342
Received Thanks: 18
Quote:
Originally Posted by
Dr. Peacock
Error Log ?
i dont have error logs sir. btw i just copied the upcutstone spec_item entry. and replace the names like this
Spec_Item
From this:
6 II_CHR_SYS_SCR_UPCUTSTONE IDS_PROPITEM_TXT_004504 1 9999 IK1_CHARGED IK2_SYSTEM IK3_SCROLL = = 1 = 3000000 = = = = = = = 0 = = 1 4 1 1 1 = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXPAN01 = = = 7200 = = WUI_NOW = = = = = = = = = 0 0 0 0 0 = = = = = = = = = = = = = = = = = """Itm_ChrSysScrUpcut.dds""" 0 """""" IDS_PROPITEM_TXT_004505 1 300 0 0 1 0 0 0 0 0 2 = = = = = = = = = = 1 1 1 1 1 0
To This:
6 II_SYS_SYS_GUILDBUFF_LV50 "Buff of Guild EXP" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = 1 = 3000000 = = = = = = = 0 = = 1 4 1 1 1 = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_ATKPOWER_RATE = = 5 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXPAN01 = = = 7200 = = WUI_NOW = = = = = = = = = 0 0 0 0 0 = = = = = = = = = = = = = = = = = """Skill_GUILDBUFF50.dds""" 0 """""" "GUILD BUFF TEST" 1 300 0 0 1 0 0 0 0 0 2 = = = = = = = = = = 1 1 1 1 1 0
04/06/2018, 02:37
#4
elite*gold: 60
Join Date: Sep 2017
Posts: 424
Received Thanks: 138
11 II_SYS_SYS_GUILDBUFF_LV10 "Buff of Guild Damage" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = = = 0 = = = = = = = 0 = = 1 = = = = = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_ATKPOWER_RATE = = 5 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXCHAN01 = = = = 1000000 = WUI_NOW = = = = = = = = = 0 0 0 0 0 0 = = = = = = = = = = = = = = = = """Skill_GUILDBUFF10.dds""" 0 """""" "Info: increase your AttackRate +5%" 1 300 0 0 1 0 0 0 0 0 2 = = = = = = = = = = 1 1 1 1 1 0
04/06/2018, 07:02
#5
elite*gold: 0
Join Date: Mar 2017
Posts: 342
Received Thanks: 18
Quote:
Originally Posted by
Dr. Peacock
11 II_SYS_SYS_GUILDBUFF_LV10 "Buff of Guild Damage" 1 1 IK1_SYSTEM IK2_BUFF IK3_SCROLL = = = = 0 = = = = = = = 0 = = 1 = = = = = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = DST_ATKPOWER_RATE = = 5 = = = = = = = = = = = = = = = = = = = = = = = = XI_SYS_EXCHAN01 = = = = 1000000 = WUI_NOW = = = = = = = = = 0 0 0 0 0 0 = = = = = = = = = = = = = = = = """Skill_GUILDBUFF10.dds""" 0 """""" "Info: increase your AttackRate +5%" 1 300 0 0 1 0 0 0 0 0 2 = = = = = = = = = = 1 1 1 1 1 0
after i use the item my client is force closing. and i got this error in my client sir
Code:
2018/ 4/ 6 13:01:32 Apr 6 2018 03:43:52 1 rCnt=1
neuz.exe* caused an EXCEPTION_ACCESS_VIOLATION in module neuz.exe* at 0023:0050825E, CWndWorld::RenderBuff()+0302 byte(s), d:\exploring flyff\source\program\_interface\wndworld.cpp, line 12329
- Registers
EAX=0000E9D3 EBX=00000000 ECX=20CEE718 EDX=00000000 ESI=20C5FF90
EDI=00000000 EBP=00A4935C ESP=00189BAC EIP=0050825E FLG=00210293
CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B
0023:0050825E neuz.exe*, CWndWorld::RenderBuff()+0302 byte(s)
0023:0050A12A neuz.exe*, CWndWorld::OnEraseBkgnd()+2698 byte(s)
0023:716A5B69 atiumdag.dll, OpenAdapter()+245529 byte(s)
0023:70E3E57E atiumdva.dll, MmdDxxCreateDevice()+110222 byte(s)
0023:008B8017 neuz.exe*, write_string()+0039 byte(s)
0023:008B878D neuz.exe*, _output()+1863 byte(s)
0023:008AD66D neuz.exe*, sprintf()+0047 byte(s)
0023:00758D70 neuz.exe*, PaintTexture()+0208 byte(s)
AMD A4-6300 APU with Radeon(tm) HD Graphics Service Pack 1
AMD Radeon HD 8370D, 53477376(1254)
0x18:0x18-YS398 1 74-last Model:item_WeaAxeOdy.o3d
PaintTexture - IN
Surface 256 256, Pt 220 222 IMG_BIT = 2, D3DFORMAT = 26
PaintTexture - OUT
04/07/2018, 16:36
#6
elite*gold: 294
Join Date: Jun 2009
Posts: 407
Received Thanks: 587
CWndWorld::RenderBuff sir
04/07/2018, 22:28
#7
elite*gold: 0
Join Date: Mar 2017
Posts: 342
Received Thanks: 18
Quote:
Originally Posted by
Avalion
CWndWorld::RenderBuff sir
i already fixed it sir and now all is functionable now i wonder how to make my guild buffs cost to penya or penya and how to make it lv10 to make guild buffs
04/08/2018, 23:33
#8
elite*gold: 0
Join Date: Mar 2018
Posts: 77
Received Thanks: 57
Quote:
Originally Posted by
babyminion
Stop using garbage content and check other sources if you don't plan to code it yourself. I'm pretty sure Azure has this, but then again you would have to actually look and test it.
04/09/2018, 03:13
#9
elite*gold: 0
Join Date: Mar 2017
Posts: 342
Received Thanks: 18
im just exploring things sir thanks for advice
Similar Threads
Illumine-Fly
05/21/2017 - Flyff PServer Advertising - 52 Replies
http://i.epvpimg.com/EqE4eab.jpg
Website | Forum | Download | Register
Liebe Leserin und lieber Leser,
ich heiße dich herzlich Willkommen in diesem Thread und würde dir nun gerne etwas über unseren Flyff Server erzählen.
Wir alle spielen und lieben Flyff und haben alle sicher schon etliche Jahre Erfahrung in diesem Spiel. Wie auch jeder weiß hat uns das Spiel Höhen und Tiefen gezeigt.
Wir sind durch etliche Wipes, Serverschließungen und DDos-Attacken gegangen. Dazu kommt noch die...
All times are GMT +2. The time now is 18:19 .