You are viewing our Forum Archives. To view or take place in current topics click here.
Xbox 360: XNotify | How To Do it |
Posted:
Xbox 360: XNotify | How To Do it |Posted:
Status: Offline
Joined: Sep 07, 201311Year Member
Posts: 20
Reputation Power: 0
Status: Offline
Joined: Sep 07, 201311Year Member
Posts: 20
Reputation Power: 0
Welcome to my post!
typedef void (__cdecl * XNOTIFYQUEUEUI)(QWORD stringId, QWORD playerIndex, QWORD r5, WCHAR* displayText, QWORD r7);
add that to your project.
char message[0x256];
memset( message, 0, 0x256 );
swprintf( (WCHAR*)message, L"Notify Text Here!" );
XNotifyQueueUI( 0x22, 0, 2, (WCHAR*)message, 0 );
then call it like that.
typedef void (__cdecl * XNOTIFYQUEUEUI)(QWORD stringId, QWORD playerIndex, QWORD r5, WCHAR* displayText, QWORD r7);
add that to your project.
char message[0x256];
memset( message, 0, 0x256 );
swprintf( (WCHAR*)message, L"Notify Text Here!" );
XNotifyQueueUI( 0x22, 0, 2, (WCHAR*)message, 0 );
then call it like that.
The following 1 user thanked WeAreFresh for this useful post:
jtbyard (09-07-2013)
#2. Posted:
Status: Offline
Joined: Aug 31, 201311Year Member
Posts: 85
Reputation Power: 3
Status: Offline
Joined: Aug 31, 201311Year Member
Posts: 85
Reputation Power: 3
That isn't for the newest dash update I don't think.
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.