Siege rewad

03/11/2018 17:37 igorgv#1
hellow guys

were i can change the Siege rewads and amount to the winner?
03/11/2018 18:42 Dr. Peacock#2
Search for :
Code:
if( bKillDiffernceGuild )
It's in the Function ->
Code:
void CGuildCombat::GetPoint( CUser* pAttacker, CUser* pDefender )
In your eveschool.cpp (_COMMON)


Now change this !
Code:
	// 이전과 다른 길드원을 Kill 했을 경우
	if( bKillDiffernceGuild )
		++nGetPoint;
to this :

Code:
	if( bKillDiffernceGuild )
		++nGetPoint;
	    CItemElem item;
    item.m_nItemNum = 5;
    item.m_dwItemId = II_CHP_RED;
    if( pAttacker->CreateItem( &item ) )
    {
        //pAttacker->AddText("" );
    }
Now you receive for each kill 5 RC :)