Jump to content
RealModScene

felida

Moderators
  • Content Count

    4175
  • Joined

  • Last visited

  • Days Won

    320

Everything posted by felida

  1. You dont sound like an idiot.. but the 360 has drastically less power than the series lineup.. They have more power than the one and one x as well.. so that would be a 2 generation gap of consoles.. The 360 can run only up to ps1/n64 era.. and doesnt run those very well either..
  2. Ok, so, the ???? Issue is because you still had the plugin running while updating.. The location has changed from aurora/trainers to Aurora/user/trainers at one point.. If you do have the trainers in the correct location, and they do not show up in Aurora, then they do not match your media id.. If they show but are greyed out, then it would be a TU mismatch.. if no trainer shows, it doesnt match the media id or not in correct location
  3. You can not run an Aurora trainer unless it is that menu.. make sure you are placing them in the correct location
  4. i already did.. https://www.realmodscene.com/index.php?/topic/8823-default-skin-with-music/&do=findComment&comment=92511
  5. The game you have is minecraft story mode season 2.. The only updates on unity is for the original release.. which would be a different game.. I'll tell you like this, if you use Aurora to check for title updates, and it does not provide any.. then there is nothing on the servers for your version.. you can not just use a different title update for a different titleid/media ID.. Now to answer your question about the scheme: the IDs of the games are Hex.. the database is decimal.. you would need to convert between the 2.. For instance: the first entry 1096157387 to hex is 415608CB...
  6. This program isn't for use on modded consoles
  7. Xbla isnt guaranteed region free.. And you are saying your legit game is having an issue with your legit dlc??? Because if it already works on your console.. there shouldn't be a region issue.. we dont support piracy..
  8. LiNK is ONLY for system link compatible games.. if the game you are trying to play DOES NOT allow for LAN games.. we can NOT force it to allow them
  9. either your ISP isnt allowing the opening of ports(common in most of the world) or something as simple as a double router issue.. you can even try changing the ports required instead of using the default ones.. you can easily test the open ports on your PC, then change the IP to your xbox after you verify they are open
  10. Bro can you just tell me what's the password i can't find the password https://mega.nz/file/mER0CQxa#a7HNCH9t_yH-b84cCP6fVM6EKuCBm9fh-qmenSus7JQ
  11. you only need those ports open to HOST a match, not to play.. now it would be an issue with your internet.. not the console.. if the ports dont open.
  12. YOU have to apply the update in the updates menu.. if you ARE doing this and the title update still isnt applying, then more than likely the TU is corrupted.. you can verify this in the stock dash
  13. the fan... it is a motor.. motors only have a certain life expectancy..
  14. The options I put, are in the trainer.cpp.. it is a working example..
  15. Damn, I'm sorry to hear mate.. as for mods. I'd do RGH3 for it.. no glitch chip needed.. haven't got around to do my falcon, as it is sitting at rgh1.2 lol.. but glad you are still here mate
  16. they can mate.. i personally do not have the commands in any that i have.. as i dont need any special message to pop up i will give you a nod in the right direction tho.. i will contact someone that helped create the code, but no promises on their response. in the bubble area, you call the cheat that you activate and the message you code will show up in the xnotify.. now let me try and get in touch with some people about the specific way to do it lol edit: i will try and post this code into here.... void CTrainer::TrainerMenuUpdate( DWORD ChosenOption ) { BCFix //SP CHEATS if( TitleInfo->GetTitleInfo().szXexPEName == "Yeti_Final_Xenon.exe" ){//GET ORIGINAL PE NAME if( Memory->ISAddressValid(0x8803201C)){//MAKE SURE MEMORY AT ADDRESS IS NOT ??????? if( Cheat[1] || Cheat[2] )//GOD//IKILL Memory->ChkAsmPatch( 11, 0x8803201C, 0x7C7F1B78, TCGRAW2_GOD_IKILL ); else Memory->UnPatch(0x8803201C); if( Cheat[3] )//NO RELOAD + INF AMMO Memory->PokeC32(0x8817FA8C, 0x394AFFFF, 0x394A0000 ); Memory->PokeC32(0x8817FBC8, 0x394AFFFF, 0x394A0000 ); Memory->PokeC32(0x8817FE18, 0x3929FFFF, 0x39290000 ); Memory->PokeC32(0x8817FD84, 0x394AFFFF, 0x394A0000 ); else Memory->PokeC32(0x8817FA8C, 0x394A0000, 0x394AFFFF ); Memory->PokeC32(0x8817FBC8, 0x394A0000, 0x394AFFFF ); Memory->PokeC32(0x8817FE18, 0x39290000, 0x3929FFFF ); Memory->PokeC32(0x8817FD84, 0x394A0000, 0x394AFFFF ); if( Cheat[4] ){//GRENADES Memory->PokeC32(0x88179434, 0x7D4ADA14, 0x394A0000 );//FRAG Memory->PokeC32(0x88179454, 0x394AFFFF, 0x394A0000 );//FRAG Memory->PokeC32(0x881793C0, 0x394AFFFF, 0x394A0000 );//SMOKE }else{ Memory->PokeC32(0x88179434, 0x394A0000, 0x7D4ADA14 ); Memory->PokeC32(0x88179454, 0x394A0000, 0x394AFFFF ); Memory->PokeC32(0x881793C0, 0x394A0000, 0x394AFFFF ); } #pragma region UCC Cheat 5:( SET GUN SMOKE ) variables used:( 0 ) UCCINFO SMOKE; if( ChosenOption == 5 && Cheat[5] && SUCCEEDED( Message->StartUCC( &SMOKE, L"\n.::Pick a value between (1) & (50) to set as smoke amount::.\n.::Set as 333 to restore default value::." ) ) ){ if( SMOKE.fValue == 333.0 ){ Memory->PokeFloat( 0x82000D70, 0.1 ); Message->BubbleMessage("Default value of 0.1 Has Been Set"); Cheat[5]=false; return; } if( SMOKE.fValue >= 1.0 && SMOKE.fValue <= 50.0 ){ Memory->PokeFloat( 0x82000D70, SMOKE.fValue ); Message->BubbleMessage("Your value Has Been Set"); Cheat[5]=false; return; }else{ Memory->PokeFloat( 0x82000D70, 0.1 ); Message->BubbleMessage("Default value of 0.1 Has Been Set"); Cheat[5]=false; return; } } #pragma endregion }else{ Cheat[1]=false; Cheat[2]=false; Cheat[3]=false; Cheat[4]=false; Cheat[5]=false; Message->BubbleMessage("All SP Cheats have been disabled!, Please turn on whilst you are in game!"); }
  17. Nova IS LiNK mate.. it USED to be called freestyle plugin.. but they changed some stuff and made it into Nova
  18. https://mega.nz/file/GQQ0yZbQ#cXRS4IrIHXJ5rL967rrRV9HTO-m5vjC9Chf8CKT_cFA https://mega.nz/file/SN43WSiS#uY9-pi7GWCzgHyyunmrLyy4OrwI94KJOJpjFSfa8QfU there is 2.. unfortunately my HDD is acting up and i havent had time to actually get around to it lmao.. but i DO have them backed up online.. they are 2 different ones, but structure is the same... just rename them to trainer.cpp in order to build yours edit: here is also a video on how to make the trainers from the legendary AxR https://mega.nz/folder/bZQ0Ea5T#IZzCHNRJtTpJeUrSCkExNQ
  19. There should be a default .cpp I can post a simple one though later today when I get home
  20. ok, you DO NOT attempt to connect to live via the stock dash.. lol.. 2nd: for artwork and such, disable livestrong 3rd: for your internal network of FTP not working.. set your connections to AUTO instead of MANUAL.. you probably have some old settings and that is your issue with that..
  21. you could try the extracted method.. and moving all the content into 1 folder.. it would be like ff13 and such..
  22. 1. no.. nothing comes from having the newest dash.. 2. download aurora, and use a fresh copy to see if that helps
  23. you were never allowed to take a modded console online.. nothing to do with aurora..
  24. i would say it is an issue with the skin.. aurora should load the default if the selected skin is deleted.. you cant use an older skin with a newer release
  25. cant necro a post that was added to a month prior lol.. but the threads are here for all
×
×
  • Create New...