[Help]Scroll Of Awakening

01/07/2017 03:49 teejayu1#1
How to make fast awake the scroll of Awakening
that will awake 1 sec only
01/10/2017 10:12 Sizzurpz#2
On your own Pserver?
01/10/2017 10:24 teejayu1#3
Quote:
Originally Posted by Sizzurpz View Post
On your own Pserver?
yes sir in the source sir can you help me how sir
01/10/2017 10:48 Sizzurpz#4
1.Go into you Source/_Interface Folder and open WndField.cpp
2.Ctrl+F and search for
Code:
else if( IsNeedTarget( pItemProp ) )
Should look like this:
Code:
#if __VER >= 11
		else if( IsNeedTarget( pItemProp ) )
		{
			m_pUpgradeItem	= pItem;
			m_dwEnchantWaitTime		= g_tmCurrent + SEC(4);
			return;
		}
3.Just change the 4 to 1 :)

Code:
#if __VER >= 11
		else if( IsNeedTarget( pItemProp ) )
		{
			m_pUpgradeItem	= pItem;
			m_dwEnchantWaitTime		= g_tmCurrent + SEC(1);
			return;
		}
01/10/2017 12:18 teejayu1#5
Quote:
Originally Posted by Sizzurpz View Post
1.Go into you Source/_Interface Folder and open WndField.cpp
2.Ctrl+F and search for
Code:
else if( IsNeedTarget( pItemProp ) )
Should look like this:
Code:
#if __VER >= 11
		else if( IsNeedTarget( pItemProp ) )
		{
			m_pUpgradeItem	= pItem;
			m_dwEnchantWaitTime		= g_tmCurrent + SEC(4);
			return;
		}
3.Just change the 4 to 1 :)

Code:
#if __VER >= 11
		else if( IsNeedTarget( pItemProp ) )
		{
			m_pUpgradeItem	= pItem;
			m_dwEnchantWaitTime		= g_tmCurrent + SEC(1);
			return;
		}
thankyou sir