You are viewing our Forum Archives. To view or take place in current topics click here.
XeX notification help!
Posted:

XeX notification help!Posted:

XBLVenom
  • New Member
Status: Offline
Joined: Mar 27, 201311Year Member
Posts: 17
Reputation Power: 1
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:

#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:
Juan55
  • New Member
Status: Offline
Joined: Dec 09, 201211Year Member
Posts: 28
Reputation Power: 1
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????
#3. Posted:
XBLVenom
  • New Member
Status: Offline
Joined: Mar 27, 201311Year Member
Posts: 17
Reputation Power: 1
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
#4. Posted:
Kaineozxenon
  • Resident Elite
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
#5. Posted:
XBLVenom
  • New Member
Status: Offline
Joined: Mar 27, 201311Year Member
Posts: 17
Reputation Power: 1
Status: Offline
Joined: Mar 27, 201311Year Member
Posts: 17
Reputation Power: 1
Kaineozxenon wrote pm'ed you dude think I can help
Thanks but thats a bad deal
#6. Posted:
Hugh
  • Prospect
Status: Offline
Joined: Apr 13, 201212Year Member
Posts: 628
Reputation Power: 36
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);
#7. Posted:
Strippers
  • TTG Senior
Status: Offline
Joined: Sep 26, 201211Year Member
Posts: 1,375
Reputation Power: 59
Status: Offline
Joined: Sep 26, 201211Year Member
Posts: 1,375
Reputation Power: 59
#8. Posted:
droseum20
  • TTG Senior
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
#9. Posted:
XBLVenom
  • New Member
Status: Offline
Joined: Mar 27, 201311Year Member
Posts: 17
Reputation Power: 1
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
#10. Posted:
droseum20
  • TTG Senior
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 wrote
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

You have fun with that, I'll be interested to see how that goes for you
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.