Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Scroll to change 1 line of awake

Newbie Spellweaver
Joined
Mar 27, 2011
Messages
26
Reaction score
3
Yo,
seems we can't edit title so :

Name : Scroll of Awakening Augmentation.
Description : This scroll allows you to choose and replace a single awakening on a weapon, armor piece, or pet and replace it with another random awakening. Note that this does not work on items with a single awakening.

More informations about this ( it's in french, so translate this if needed ) :


Download link :
To add him :

1- Put WndRandomOption.cpp/.h in your interface folder and add them to the solution.
2- Use __RANDOMOPTION_RETRY to found parts of code in the others files.
3- Define __RANDOMOPTION_RETRY and PACKETTYPE_RANDOMOPTIONRETRY
4- Add the item II_SYS_SYS_SCR_RANDOMOPTIONRTRY and the window APP_RANDOMOPTIONRETRY ( you can found them in offi files )

Enjoy.
 
Last edited:
Junior Spellweaver
Joined
Jan 8, 2012
Messages
100
Reaction score
25
Nice release, works fine :eek:tt1:, you just need to fix it:

File: WndManager.cpp
Shearch for
Code:
CWndMgr::OnDestroyChildWnd( CWndBase* pWndChild )
Add
Code:
#ifdef __RANDOMOPTION_RETRY 
	else if(m_pWndRandomOptionRetry == pWndChild)
	{
		SAFE_DELETE( m_pWndRandomOptionRetry );
		pWndChild = NULL;
	}
#endif

File: WndManager.h
Add
Code:
#ifdef __RANDOMOPTION_RETRY
#include "WndRandomOptionRetry.h"
#endif
On class CWndMgr
Code:
#ifdef __RANDOMOPTION_RETRY
    CWndRandomOptionRetry* m_pWndRandomOptionRetry;
#endif

File: MsgHdr.h
Code:
#ifdef __RANDOMOPTION_RETRY
#define PACKETTYPE_RANDOMOPTIONRETRY				(DWORD)0x88100244
#endif

Rebuild your project :)
 
Newbie Spellweaver
Joined
Mar 27, 2011
Messages
26
Reaction score
3
Oh yes, forgot the part with WndManager. You need to initialize m_pWndRandomOptionRetry in CWndMgr::CWndMgr() and delete in CWndMgr::Free() too.
 
Newbie Spellweaver
Joined
Sep 4, 2012
Messages
99
Reaction score
2
what can i do to appear this

Twenty - Scroll to change 1 line of awake - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Jun 27, 2011
Messages
70
Reaction score
9
What do you need exactly
What can i do to appear this and a pix isnt enough.
We dont know what do you want to do
 
Last edited:
Newbie Spellweaver
Joined
Sep 4, 2012
Messages
99
Reaction score
2
this is scroll ??? how to add that in Server =.=
 
Newbie Spellweaver
Joined
Sep 4, 2012
Messages
99
Reaction score
2
sorry for my mistake . i ask because i cant do it if i do not ask if im not sure ..
 
Newbie Spellweaver
Joined
Jun 27, 2011
Messages
70
Reaction score
9
You mean you want to know how you can have it?
/ci and the defined code
Double click on it and you will se that window
Put the item,choose the awake you want to change and press start
 
Newbie Spellweaver
Joined
Sep 16, 2015
Messages
18
Reaction score
0
Can anyone upload the file to mediafire or to Megaupload because the link is not for this country it says. If you can thank you very much. =]
 
Experienced Elementalist
Joined
Feb 18, 2009
Messages
225
Reaction score
13
Can you re-upload this please?

thank you.
 
Newbie Spellweaver
Joined
Nov 14, 2017
Messages
13
Reaction score
0
Can someone give the name of line in specitem because when I use this one :

18 II_SYS_SYS_SCR_RANDOMOPTIONRTRY IDS_PROPITEM_TXT_015939 1 9999 IK1_ACTIVEUI IK2_RANDOMOPTION IK3_RANDOMOPTION_RETRY = 0 1 = 4 = = = = = = = 0 = = 1 = = 1 1 = = = = _NONE 0 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = WUI_NOW = = = = = = = = = 0 0 0 0 0 0 = = = = = = = = = = = = 1 = = = """Itm_RandomoptionRetry-32.dds""" 0 """""" IDS_PROPITEM_TXT_015940 1 300 0 0 1 0 0 0 1 0 2 = = = = = = = = = = 1 1 1 1 1 0 ITEM_GRADE_NORMAL 1 TYPE1_CONSUME TYPE2_CONSUME_SCROLL 1 0 0 0


The databaseserver crash everytime

Btw here is a link to download this system because the previous link is dead :
 
Back
Top