Code Monkey home page Code Monkey logo

skyline's People

Contributors

3096 avatar blu-dev avatar faultypine avatar genwald avatar jam1garner avatar jozz024 avatar jugeeya avatar masagrator avatar raytwo avatar sammi-husky avatar shadowninja108 avatar tech-ticks avatar techycoder81 avatar throwawayay avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

skyline's Issues

Odd error on startup

I have installed several skins, one font change and one effect for cloud and got this error when trying to startup the game, and told me to send it so here it is, I have no idea what it means but I'll try to find out what it is on the meantime
20220504_141910

Skiline paniked

20221107_112921
very good day I hope you can help me I don't know what to do yesterday early it worked fine since I was playing without any problem but at night I tried to add some new mods it stopped working and it gave me an error I deleted the mods that I installed I even put it back pluging and the exef and then it gave me that error how do I fix it thanks in advance hand

Skyline error

I'm having an error when trying to load my mods. Someone recommended that I remove the acropolis file in ultimate/acropolis, which I did but the error still occurs. Is there any way that someone can help me resolve this issue?
29503C14-153B-44D4-B1B1-7BF3128775AC

Guide to making main.npdm?

I was trying to use the p5rs but the game just crashes. Maybe the main.ndpm needs to be updated with the patched main.ndpm from the latest update of the game?

Is there any guide on how and what to patch on the main.ndpm file?

I tried looking it up but I can't find anything.

I'm not really making mods for Switch games. I just wanted to make the https://github.com/Raytwo/p5rcbt work.

Skyline instantly crashes Smash Ultimate

I just installed Arcropolis and Skyline (latest versions, no mods added) and I can't launch Smash without either holding the L button or getting rid of the exefs folder (both ways make it so that Arcropolis doesn't load). When I do it normally it just says "Unable to start software. Return to the HOME Menu and try again." How do I fix this?

Explanation missing how to use Skyline

Hello,
I cannot find any explanation on how to use Skyline, e.g. where to copy which files in order to use it. I think you should really add it to your github page!

Skyline disables local wireless menu

In ultimate, just having the skyline files in the exefs folder (with no plugins) makes the local wireless menu instantly back out to the previous menu

Skyline error after enabling mods

error

After installing ARCropolis and enabling mods through the e-shop menu, I get the error message above when trying to launch smash bros. I tried manually putting the skyline files through FTP, but nothing seemed to work. Prompt suggests asking the dev.
Thanks

Skyline has Panicked

For the past 2 days i've tested things, I've uninstalled mods, resetup my sd card, reformatted it. everything. This is the error
unknown

what do I do???

Skyline panic

63b4d2cec5286

I tried downloading a mod that started to make skyline panic. After removing the files from the mod, this issue still keeps happening. Anyone know why?

Failure with 0 aslr_slide

This code does not work when ASLR is disabled or you hit the 1/260000 lottery of selecting a 0 ASLR slide value:

// search for applicable space for inline hook JIT
auto cur_searching_addr =
skyline::utils::g_MainTextAddr - inline_hook_pool_size; // start searching from right before .text
MemoryInfo mem;
while (true) {
u32 page_info;
if (R_SUCCEEDED(svcQueryMemory(&mem, &page_info, cur_searching_addr)) && mem.type == MemType_Unmapped &&
mem.size >= ALIGN_UP(inline_hook_pool_size, PAGE_SIZE)) {
break;
}
cur_searching_addr -= PAGE_SIZE;
}
// allocate inline hook JIT
rc = jitCreate(&__inline_hook_jit, (void*)ALIGN_DOWN(mem.addr + mem.size - inline_hook_pool_size, PAGE_SIZE),
inline_hook_pool_size);

The code assumes addresses before the first .text section can be mapped as generated code. But if the ASLR slide is 0, then they are not mappable as generated code, and the program will fail to perform the call to svc::ControlCodeMemory and subsequently crash.

Skyline panicked?

I need help fixing this error on Ryujinx I was loading smash but I got this error here please help! I don't know what the code means.
Screenshot 2023-01-16 230456
Screenshot 2023-01-16 230643

Skyline plugin has panicked

I have never had this problem before but today this showed up before opening smash,is there any way i can fix this?
2022043019301500-1AB131B6E6571375B79964211BB3F5AE
exefs 30_04_2022 19_51_18
exefs 30_04_2022 19_50_47
exefs 30_04_2022 19_51_01

Undefined behavior in TCP logger

In these two functions which are intended to return Result, they do not return ResultSuccess() in the case where g_loggerInit == true. This is UB and causes gcc to emit trap instructions for these cases, which crashes when reached.

Result init_normal(void* arg1, ulong arg2, ulong arg3, int arg4) {
if (g_loggerInit == false) {
g_loggerInit = true;
const size_t poolSize = 0x600000;
void* socketPool = memalign(0x4000, poolSize);
Result res = nnSocketInitalizeImpl(socketPool, poolSize, 0x20000, 14);
start_logger_init_thread();
return res;
}
}

Result init_config(nn::socket::Config const& config) {
if (g_loggerInit == false) {
g_loggerInit = true;
const size_t poolSize = 0x600000;
void* socketPool = memalign(0x4000, poolSize);
Result res = nnSocketInitalizeImpl(socketPool, poolSize, 0x20000, 14);
start_logger_init_thread();
return res;
}
}

0000000000000000 <_ZN7skyline6logger11init_normalEPvmmi>:
   0:    90000000     adrp    x0, 10 <_ZN7skyline6logger11init_normalEPvmmi+0x10>
   4:    f9400000     ldr    x0, [x0]
   8:    39400000     ldrb    w0, [x0]
   c:    370002a0     tbnz    w0, #0, 60 <_ZN7skyline6logger11init_normalEPvmmi+0x60>
  10:    a9bf7bf3     stp    x19, x30, [sp, #-16]!
  14:    90000000     adrp    x0, 10 <_ZN7skyline6logger11init_normalEPvmmi+0x10>
  18:    f9400000     ldr    x0, [x0]
  1c:    52800021     mov    w1, #0x1                       // #1
  20:    39000001     strb    w1, [x0]
  24:    d2a00c01     mov    x1, #0x600000                  // #6291456
  28:    d2880000     mov    x0, #0x4000                    // #16384
  2c:    94000000     bl    0 <memalign>
  30:    90000001     adrp    x1, 8 <_ZN7skyline6logger11init_normalEPvmmi+0x8>
  34:    f9400021     ldr    x1, [x1]
  38:    f9400024     ldr    x4, [x1]
  3c:    528001c3     mov    w3, #0xe                       // #14
  40:    d2a00042     mov    x2, #0x20000                   // #131072
  44:    d2a00c01     mov    x1, #0x600000                  // #6291456
  48:    d63f0080     blr    x4
  4c:    2a0003f3     mov    w19, w0
  50:    94000000     bl    0 <_ZN7skyline6logger11init_normalEPvmmi>
  54:    2a1303e0     mov    w0, w19
  58:    a8c17bf3     ldp    x19, x30, [sp], #16
  5c:    d65f03c0     ret
  60:    d4207d00     brk    #0x3e8

Skyline plugin has panicked

After updating my switch yesterday, i tried to put the mods again. had an old atmosphere version and had to update to the latest, and in the process i deleted my old atmosphere folder. I reinstalled everything again and for a moment had everything working... except the training mod. this morning I tried again and managed to get everything right. But i quit my sd card one last time to check some conflicts with mods and fix them. This two errors happened
error 1
error2
I´ve been fighting with my switch for almost 2 hours already. downloaded everything from 0 in a step by step guide, nothing worked lmao. I tried deleting the plugins file altogether and it obviously worked but smash started without mods. i dunno what causes it, i have the most recent version of both the training modpack and arcadia. Any ideas? i can provide more screenshots of my atmosphere folder if needed

issue after trying to install one-slot-effects

Hey there! I was prompted with "ARCropolis has panicked!" after trying to install one-slot-effects. I tried to fix this myself by deleting the files that I had added in my plugins, but to no avail. I assume this is where i should post my screenshot of my issue. Any help is greatly appreceated!

IMG_3434

Error Code: 2-0069

Skyline disabling lan play

Does anyone know a work around to make it so skyline wont disable lan play? I've heard people talking about skyline debuggers that can stop it from preventing lan play but can not find anything online.

[Feature Request] Ryujinx LDN support

Skyline already works on Ryujinx, but all we need now is LDN support and then everything will be perfect. Please consider adding support for this

Atmosphere 0.14.2+ causes black screen on match start

As the title suggests. I've ruled out every other possibility. It seems when running Atmosphere 0.14.2 and newer, matches don't start. It just stays at a black screen and music still runs. Not sure if this is an Atmosphere issue or a Skyline issue.

Skyline error

Hello, I've been having an error code that I'm unfamiliar with. Does anyone think that they'll able to help me?
29503C14-153B-44D4-B1B1-7BF3128775AC

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.