You are viewing our Forum Archives. To view or take place in current topics click here.
XeX notification help!
Posted:
XeX notification help!Posted:
Status: Offline
Joined: Mar 27, 201311Year Member
Posts: 17
Reputation Power: 1
Hey TTG,
I'm making a plugin for dashlaunch and I need to know the code to make a notification come up on your screen. A notification like when your xbox boots up and it says how many friends you have online.
For example, When one of my clients connects to XBL, I want it to say "XBLVenom"
Is this right:
Thanks,
XBLVenom
Last edited by XBLVenom ; edited 1 time in total
I'm making a plugin for dashlaunch and I need to know the code to make a notification come up on your screen. A notification like when your xbox boots up and it says how many friends you have online.
For example, When one of my clients connects to XBL, I want it to say "XBLVenom"
Is this right:
#include "stdafx.h"
#include "kernel.h"
#include "types.h"
#include <stdio.h>
#include <string>
typedef void (*XNotifyQueueUI)(u64 stringId, u64 playerIndex, u64 r5, WCHAR* displayText, u64 r7);
UINT32 resolveFunct(char* modname, UINT32 ord)
{
UINT32 ptr32 = 0, ret = 0, ptr2 = 0;
ret = XexGetModuleHandle(modname, (PHANDLE)&ptr32);
if(ret == 0){
ret = XexGetProcedureAddress((HANDLE)ptr32, ord, &ptr2);
if(ptr2 != 0)
return(ptr2);
}
return(0);
}
{
XNotifyQueueUI xNotifyQueueUI = (XNotifyQueueUI)resolveFunct("xam.xex", 656);
WCHAR buffer[0x256];
swprintf(buffer, Message);
xNotifyQueueUI(0x22, 0x0, 2, buffer, 0);
}
{
Popup(L"XBLVenom Success!");
}
Thanks,
XBLVenom
Last edited by XBLVenom ; edited 1 time in total
#2. Posted:
Status: Offline
Joined: Dec 09, 201211Year Member
Posts: 28
Reputation Power: 1
I belive it's Xnotify (that may just be for games)
EDIT: are you the owner of XBLvenom????
EDIT: are you the owner of XBLvenom????
- 0useful
- 1not useful
#3. Posted:
Status: Offline
Joined: Mar 27, 201311Year Member
Posts: 17
Reputation Power: 1
Juan55 wrote I belive it's Xnotify (that may just be for games)Give me an example of the code i would use please
- 0useful
- 1not useful
#4. Posted:
Status: Offline
Joined: Mar 27, 201212Year Member
Posts: 277
Reputation Power: 11
Status: Offline
Joined: Mar 27, 201212Year Member
Posts: 277
Reputation Power: 11
pm'ed you dude think I can help
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Mar 27, 201311Year Member
Posts: 17
Reputation Power: 1
Kaineozxenon wrote pm'ed you dude think I can helpThanks but thats a bad deal
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Apr 13, 201212Year Member
Posts: 628
Reputation Power: 36
C++
typedef void (*XNotifyQueueUI)(int _34, int _0, int _2, WCHAR *TEXT, int _0_);
XNotifyQueueUI XNotify = (XNotifyQueueUI)0x816A91F8;
to call it use
XNotify(34, 0, 2, L"Connected To XBLV Thanks to Hugh!", 0);
typedef void (*XNotifyQueueUI)(int _34, int _0, int _2, WCHAR *TEXT, int _0_);
XNotifyQueueUI XNotify = (XNotifyQueueUI)0x816A91F8;
to call it use
XNotify(34, 0, 2, L"Connected To XBLV Thanks to Hugh!", 0);
- 0useful
- 0not useful
#7. Posted:
Status: Offline
Joined: Sep 26, 201212Year Member
Posts: 1,375
Reputation Power: 59
Status: Offline
Joined: Sep 26, 201212Year Member
Posts: 1,375
Reputation Power: 59
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Apr 25, 201113Year Member
Posts: 1,601
Reputation Power: 116
Status: Offline
Joined: Apr 25, 201113Year Member
Posts: 1,601
Reputation Power: 116
Yes, and you created your own online method. Please tell me more, I'm interested.
EDIT: Your fantastic syntax just proved to me you have the capability to code your own online method.
Last edited by droseum20 ; edited 1 time in total
EDIT: Your fantastic syntax just proved to me you have the capability to code your own online method.
Last edited by droseum20 ; edited 1 time in total
- 3useful
- 0not useful
#9. Posted:
Status: Offline
Joined: Mar 27, 201311Year Member
Posts: 17
Reputation Power: 1
droseum20 wrote Yes, and you created your own online method. Please tell me more, I'm interested.You compress (kxam Builder) it into a xex file (xam.xex) Then run it It gives you another file with the Challenges You put those challenges in the kxam patch builder reflash your xbox Bam Jtag can go online
- 0useful
- 1not useful
#10. Posted:
Status: Offline
Joined: Apr 25, 201113Year Member
Posts: 1,601
Reputation Power: 116
Status: Offline
Joined: Apr 25, 201113Year Member
Posts: 1,601
Reputation Power: 116
XBLVenom wrotedroseum20 wrote Yes, and you created your own online method. Please tell me more, I'm interested.You compress (kxam Builder) it into a xex file (xam.xex) Then run it It gives you another file with the Challenges You put those challenges in the kxam patch builder reflash your xbox Bam Jtag can go online
You have fun with that, I'll be interested to see how that goes for you
- 1useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.