Post: Need help with SPRX Mod Menu !
02-15-2017, 11:33 AM #1
GCL97
Keeper
(adsbygoogle = window.adsbygoogle || []).push({}); Hey NextGenUpdate !
I've probleme with SPRX in BO1 1.13 !
So under this text you'll find more information about it, in English, German and French !xD
I have try it to write without Google translate so it could be that some words are false, please excuse this!
Thanks for helping!
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
English:
Hey Guys !
So i've started to create a BO1 SPRX mod menu.
I've used the menu base from oStankyModz -->*You must login or register to view this content.
And now my Problem: If i start an offline match like splitscreen, it's work fine ! But if i try it in an online match it's wont work !
Does anyone had already the same problem ?!

Thanks !

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
German:
Hey Leute!
Ich habe mit einem neuen Projekt angefangen --> ein BO1 SPRX Mod Menu.
Ich habe die Menu-Base von oStankyModz benutzt -->*You must login or register to view this content.
Mein Problem ist folgendes: Splitscreen funktioniert das Menu ohne Probleme, jedoch wenn ich ein Online-Match starte funktioniert es nicht mehr, im Sinne von, es wird mir nichts angezeigt!
Hatte jemand schon das selbe Problem ?!

Danke !

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
French:
Salut!
Je commencé de faire un nouveau projet --> un SPRX Mod Menu pour BO1.
J'ai pris le menu-base de oStankyModz -->*You must login or register to view this content.
Mon problème: Je peut utilise le menu base quand je joue offline par exemple splitscreen, mais quand je veut jouer online, je ne le peut pas utilise!
Est-ce que il y a quelqu'un qui a cette problème aussi ?!

Merci !

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
02-15-2017, 03:59 PM #2
-JM-
Space Ninja
Originally posted by GCL97 View Post
Hey NextGenUpdate !
I've probleme with SPRX in BO1 1.13 !
So under this text you'll find more information about it, in English, German and French !xD
I have try it to write without Google translate so it could be that some words are false, please excuse this!
Thanks for helping!
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
English:
Hey Guys !
So i've started to create a BO1 SPRX mod menu.
I've used the menu base from oStankyModz -->*You must login or register to view this content.
And now my Problem: If i start an offline match like splitscreen, it's work fine ! But if i try it in an online match it's wont work !
Does anyone had already the same problem ?!

Thanks !

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
German:
Hey Leute!
Ich habe mit einem neuen Projekt angefangen --> ein BO1 SPRX Mod Menu.
Ich habe die Menu-Base von oStankyModz benutzt -->*You must login or register to view this content.
Mein Problem ist folgendes: Splitscreen funktioniert das Menu ohne Probleme, jedoch wenn ich ein Online-Match starte funktioniert es nicht mehr, im Sinne von, es wird mir nichts angezeigt!
Hatte jemand schon das selbe Problem ?!

Danke !

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
French:
Salut!
Je commencé de faire un nouveau projet --> un SPRX Mod Menu pour BO1.
J'ai pris le menu-base de oStankyModz -->*You must login or register to view this content.
Mon problème: Je peut utilise le menu base quand je joue offline par exemple splitscreen, mais quand je veut jouer online, je ne le peut pas utilise!
Est-ce que il y a quelqu'un qui a cette problème aussi ?!

Merci !

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

français

Cette base est mauvaise Fait le toi même sa va être 100 fois mieux et ta base a la mauvaise structure pour les hud
02-15-2017, 04:08 PM #3
Originally posted by JM
français

Cette base est mauvaise Fait le toi même sa va être 100 fois mieux et ta base a la mauvaise structure pour les hud

JM is right.
I had the same Problem as you
There is a fix, use this create thread function (SYS_PPU_THREAD_CREATE_JOINABLE) makes it usable online

    sys_ppu_thread_t BlackOpsBase;
sys_ppu_thread_t create_thread(void(*entry)(uint64_t), int priority, size_t stacksize, const char* threadname, sys_ppu_thread_t id) {
if (sys_ppu_thread_create(&id, entry, 0, priority, stacksize, SYS_PPU_THREAD_CREATE_JOINABLE, threadname) == CELL_OK)
{
console_write("Thread successfully created!\n");
}
return id;
}
02-15-2017, 04:14 PM #4
-JM-
Space Ninja
Originally posted by OhBOOY View Post
JM is right.
I had the same Problem as you
There is a fix, use this create thread function (SYS_PPU_THREAD_CREATE_JOINABLE) makes it usable online

    sys_ppu_thread_t BlackOpsBase;
sys_ppu_thread_t create_thread(void(*entry)(uint64_t), int priority, size_t stacksize, const char* threadname, sys_ppu_thread_t id) {
if (sys_ppu_thread_create(&id, entry, 0, priority, stacksize, SYS_PPU_THREAD_CREATE_JOINABLE, threadname) == CELL_OK)
{
console_write("Thread successfully created!\n");
}
return id;
}


I suggest hook VM_Resume I run my whole menu through there less freeze

The following user thanked -JM- for this useful post:

OhBOOY
02-15-2017, 04:34 PM #5
GCL97
Keeper
Merci pour ta reponse!
C'est mon premiere projet dans bo1, c'est pourquoi je prend cette base :P
Et je trouve pour apprend sprx la base et bon (y)
Mais apres je doit faire ma meme, tu as raison ! Smile
02-15-2017, 04:34 PM #6
GCL97
Keeper
Thanks for answering !
I'll try it out (y)
02-15-2017, 05:56 PM #7
GCL97
Keeper
Originally posted by OhBOOY View Post
JM is right.
I had the same Problem as you
There is a fix, use this create thread function (SYS_PPU_THREAD_CREATE_JOINABLE) makes it usable online

    sys_ppu_thread_t BlackOpsBase;
sys_ppu_thread_t create_thread(void(*entry)(uint64_t), int priority, size_t stacksize, const char* threadname, sys_ppu_thread_t id) {
if (sys_ppu_thread_create(&id, entry, 0, priority, stacksize, SYS_PPU_THREAD_CREATE_JOINABLE, threadname) == CELL_OK)
{
console_write("Thread successfully created!\n");
}
return id;
}


I've tried it out and yeah haha xD
Impress yourself --> You must login or register to view this content.
Can you help me again please:P

EDIT: the Errors are gone but the menu can still not get used online :(
Last edited by GCL97 ; 02-15-2017 at 06:24 PM.
02-15-2017, 08:34 PM #8
-JM-
Space Ninja
Originally posted by GCL97 View Post
I've tried it out and yeah haha xD
Impress yourself --> You must login or register to view this content.
Can you help me again please:P

EDIT: the Errors are gone but the menu can still not get used online :(


ces deux erreurs sont inutile tu devrais regarder le Output log dans view/output

De plus pour la base qui ne function pas en ligne tu devrais faire ta propre base en re-utilisant les choses de cette base

le problème est dans les huds
02-15-2017, 10:25 PM #9
GCL97
Keeper
Originally posted by JM
ces deux erreurs sont inutile tu devrais regarder le Output log dans view/output

De plus pour la base qui ne function pas en ligne tu devrais faire ta propre base en re-utilisant les choses de cette base

le problème est dans les huds


Merci pour m'aider!
Je commence maintenant de faire le moi meme !Winky Winky

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo