Jump to content

aQReh

Senior Member
  • Posts

    120
  • Joined

  • Last visited

Posts posted by aQReh

  1. Please can you help me fix this issue I am getting when I try to make a package with theos. I have reinstalled theos but still getting same error:

     

    iPhone:/theos/templates/AQESP root# make package

    > Making all for tweak aqreh…

    ==> Warning: GO_EASY_ON_ME quiets all errors, which is bad practice. Please migrate to Clang directives (e.g., -Wno-<blah> or #pragma clang diagnostic).

    ==> Preprocessing ImGuiDrawView.xm…

    ==> Compiling CheatState.cpp (arm64)…

    ==> Compiling Esp/JHPP.m (arm64)…

    ==> Compiling Esp/ImGuiLoad.m (arm64)…

    ==> Compiling Esp/JHUIViewControllerDecoupler.m (arm64)…

    ==> Compiling Esp/PubgLoad.mm (arm64)…

    ==> Compiling KittyMemory/imgui_demo.cpp (arm64)…

    ==> Compiling KittyMemory/MemoryPatch.cpp (arm64)…

    ==> Compiling KittyMemory/imgui_tables.cpp (arm64)…

    ==> Compiling KittyMemory/KittyUtils.cpp (arm64)…

    ==> Compiling KittyMemory/imgui.cpp (arm64)…

    ==> Compiling KittyMemory/MemoryBackup.cpp (arm64)…

    ==> Compiling KittyMemory/KittyMemory.cpp (arm64)…

    ==> Compiling KittyMemory/writeData.cpp (arm64)…

    ==> Compiling KittyMemory/imgui_draw.cpp (arm64)…

    ==> Compiling KittyMemory/imgui_widgets.cpp (arm64)…

    ==> Compiling SCLAlertView/SCLButton.m (arm64)…

    ==> Compiling SCLAlertView/SCLAlertViewResponder.m (arm64)…

    ==> Compiling SCLAlertView/SCLTimerDisplay.m (arm64)…

    ==> Compiling KittyMemory/imgui_impl_metal.mm (arm64)…

    While building module 'simd' imported from KittyMemory/imgui_impl_metal.mm:27:

    While building module '_Builtin_intrinsics' imported from /theos/sdks/iPhoneOS14.1.sdk/usr/include/simd/base.h:70:

    In file included from <module-includes>:5:

    /usr/bin/../lib/swift/clang/include/arm_neon.h:33541:25: error: incompatible constant for this __builtin_neon function

      __ret = (float16x4_t) __builtin_neon_vcvt_f16_f32((int8x16_t)__p0, 8);

                            ^                                            ~

    /usr/bin/../lib/swift/clang/include/arm_neon.h:33562:25: error: incompatible constant for this __builtin_neon function

      __ret = (float32x4_t) __builtin_neon_vcvt_f32_f16((int8x8_t)__p0, 41);

                            ^                                           ~~

    While building module 'simd' imported from KittyMemory/imgui_impl_metal.mm:27:

    In file included from <module-includes>:1:

    In file included from /theos/sdks/iPhoneOS14.1.sdk/usr/include/simd/simd.h:17:

    In file included from /theos/sdks/iPhoneOS14.1.sdk/usr/include/simd/vector.h:43:

    In file included from /theos/sdks/iPhoneOS14.1.sdk/usr/include/simd/vector_types.h:92:

    /theos/sdks/iPhoneOS14.1.sdk/usr/include/simd/base.h:70:13: fatal error: could not build module '_Builtin_intrinsics'

    #   include <arm_neon.h>

        ~~~~~~~~^

    KittyMemory/imgui_impl_metal.mm:27:9: fatal error: could not build module 'simd'

    #import <simd/simd.h>

    ~~~~~~~^

    4 errors generated.

    make[3]: *** [/theos/makefiles/instance/rules.mk:288: /theos/templates/AQESP/.theos/obj/arm64/KittyMemory/imgui_impl_metal.mm.e6928fd8.o] Error 1

    make[3]: *** Waiting for unfinished jobs....

    ==> Compiling SCLAlertView/SCLSwitchView.m (arm64)…

    rm /theos/templates/AQESP/.theos/obj/arm64/ImGuiDrawView.xm.mm

    make[2]: *** [/theos/makefiles/instance/library.mk:52: /theos/templates/AQESP/.theos/obj/arm64/aqreh.dylib] Error 2

    make[1]: *** [/theos/makefiles/instance/library.mk:37: internal-library-all_] Error 2

    make: *** [/theos/makefiles/master/rules.mk:146: aqreh.all.tweak.variables] Error 2

    iPhone:/theos/templates/AQESP root#

  2. I am trying to convert Xcode project to theos. When I try to compile with make package I am getting some noescape error please help. 
     

    Here Error List of Mterminial

     

    iPhone:/theos/templates/ProESP root# make package

    > Making all for tweak aqre…

    ==> Warning: GO_EASY_ON_ME quiets all errors, which is bad practice. Please migrate to Clang directives (e.g., -Wno-<blah> or #pragma clang diagnostic).

    ==> Compiling Utils/YYThreadSafeArray.m (arm64)…

    Utils/YYThreadSafeArray.m:142:70: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (NSArray *)sortedArrayUsingFunction:(NSInteger (*)(id, id, void *))comparator context:(void *)context {

                                                                         ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:48:120: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (NSArray<ObjectType> *)sortedArrayUsingFunction:(NSInteger (NS_NOESCAPE *)(ObjectType, ObjectType, void * _Nullable))comparator context:(nullable void *)context;

                                                                                                                           ^

    Utils/YYThreadSafeArray.m:146:70: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (NSArray *)sortedArrayUsingFunction:(NSInteger (*)(id, id, void *))comparator context:(void *)context hint:(NSData *)hint {

                                                                         ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:49:120: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (NSArray<ObjectType> *)sortedArrayUsingFunction:(NSInteger (NS_NOESCAPE *)(ObjectType, ObjectType, void * _Nullable))comparator context:(nullable void *)context hint:(nullable NSData *)hint;

                                                                                                                           ^

    Utils/YYThreadSafeArray.m:174:82: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (void)enumerateObjectsUsingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))block {

                                                                                     ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:63:102: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (void)enumerateObjectsUsingBlock:(void (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))block API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                         ^

    Utils/YYThreadSafeArray.m:178:121: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (void)enumerateObjectsWithOptions:(NSEnumerationOptions)opts usingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))block {

                                                                                                                            ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:64:141: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (void)enumerateObjectsWithOptions:(NSEnumerationOptions)opts usingBlock:(void (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))block API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                                ^

    Utils/YYThreadSafeArray.m:182:143: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (void)enumerateObjectsAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts usingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))block {

                                                                                                                                                  ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:65:163: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (void)enumerateObjectsAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts usingBlock:(void (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))block API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                                                      ^

    Utils/YYThreadSafeArray.m:186:86: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (NSUInteger)indexOfObjectPassingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                         ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:67:106: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (NSUInteger)indexOfObjectPassingTest:(BOOL (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                             ^

    Utils/YYThreadSafeArray.m:190:125: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (NSUInteger)indexOfObjectWithOptions:(NSEnumerationOptions)opts passingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                                                                ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:68:145: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (NSUInteger)indexOfObjectWithOptions:(NSEnumerationOptions)opts passingTest:(BOOL (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                                    ^

    Utils/YYThreadSafeArray.m:194:147: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (NSUInteger)indexOfObjectAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts passingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                                                                                      ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:69:166: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (NSUInteger)indexOfObjectAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts passingTest:(BOOL (NS_NOESCAPE^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                                                         ^

    Utils/YYThreadSafeArray.m:198:91: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (NSIndexSet *)indexesOfObjectsPassingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                              ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:71:111: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (NSIndexSet *)indexesOfObjectsPassingTest:(BOOL (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                  ^

    Utils/YYThreadSafeArray.m:202:130: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (NSIndexSet *)indexesOfObjectsWithOptions:(NSEnumerationOptions)opts passingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                                                                     ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:72:150: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (NSIndexSet *)indexesOfObjectsWithOptions:(NSEnumerationOptions)opts passingTest:(BOOL (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                                         ^

    Utils/YYThreadSafeArray.m:206:152: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (NSIndexSet *)indexesOfObjectsAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts passingTest:(BOOL (^)(id obj, NSUInteger idx, BOOL *stop))predicate {

                                                                                                                                                           ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:73:172: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (NSIndexSet *)indexesOfObjectsAtIndexes:(NSIndexSet *)s options:(NSEnumerationOptions)opts passingTest:(BOOL (NS_NOESCAPE ^)(ObjectType obj, NSUInteger idx, BOOL *stop))predicate API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                                                                               ^

    Utils/YYThreadSafeArray.m:210:55: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (NSArray *)sortedArrayUsingComparator:(NSComparator)cmptr {

                                                          ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:75:79: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (NSArray<ObjectType> *)sortedArrayUsingComparator:(NSComparator NS_NOESCAPE)cmptr API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                  ^

    Utils/YYThreadSafeArray.m:214:87: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (NSArray *)sortedArrayWithOptions:(NSSortOptions)opts usingComparator:(NSComparator)cmptr {

                                                                                          ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:76:111: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (NSArray<ObjectType> *)sortedArrayWithOptions:(NSSortOptions)opts usingComparator:(NSComparator NS_NOESCAPE)cmptr API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                                                  ^

    Utils/YYThreadSafeArray.m:218:131: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (NSUInteger)indexOfObject:(id)obj inSortedRange:(NSRange)r options:(NSBinarySearchingOptions)opts usingComparator:(NSComparator)cmp {

                                                                                                                                      ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:84:151: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (NSUInteger)indexOfObject:(ObjectType)obj inSortedRange:(NSRange)r options:(NSBinarySearchingOptions)opts usingComparator:(NSComparator NS_NOESCAPE)cmp API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0)); // binary search

                                                                                                                                                          ^

    Utils/YYThreadSafeArray.m:292:58: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (void)sortUsingFunction:(NSInteger (*)(id, id, void *))compare context:(void *)context {

                                                             ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:169:97: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (void)sortUsingFunction:(NSInteger (NS_NOESCAPE *)(ObjectType,  ObjectType, void * _Nullable))compare context:(nullable void *)context;

                                                                                                    ^

    Utils/YYThreadSafeArray.m:316:43: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (void)sortUsingComparator:(NSComparator)cmptr {

                                              ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:178:55: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (void)sortUsingComparator:(NSComparator NS_NOESCAPE)cmptr API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                          ^

    Utils/YYThreadSafeArray.m:320:75: error: parameter of overriding method should be annotated with __attribute__((noescape)) [-Werror,-Wmissing-noescape]

    - (void)sortWithOptions:(NSSortOptions)opts usingComparator:(NSComparator)cmptr {

                                                                              ^

    /theos/sdks/iPhoneOS14.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h:179:87: note: parameter of overridden method is annotated with __attribute__((noescape))

    - (void)sortWithOptions:(NSSortOptions)opts usingComparator:(NSComparator NS_NOESCAPE)cmptr API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));

                                                                                          ^

    17 errors generated.

    make[3]: *** [/theos/makefiles/instance/rules.mk:197: /theos/templates/ProESP/.theos/obj/arm64/Utils/YYThreadSafeArray.m.c6c7b4fc.o] Error 1

    make[2]: *** [/theos/makefiles/instance/library.mk:52: /theos/templates/ProESP/.theos/obj/arm64/aqre.dylib] Error 2

    make[1]: *** [/theos/makefiles/instance/library.mk:37: internal-library-all_] Error 2

    make: *** [/theos/makefiles/master/rules.mk:119: aqre.all.tweak.variables] Error 2

    iPhone:/theos/templates/ProESP root#      

  3. First of All I am new at learning and I am trying to make Esp for a Game Called “ Last Island of survival” and it’s a unity game. but I am having a problem with some offsets please if you can help me or put me in right direction it will mean a lot to me. 

    I tired but I couldn’t find it or maybe I am looking wrong area or at wrong thing

    here

    offset I need is *battle_TypeInfo and *MonsterMgr_TypeInfo

     

    here is code where this offsets are used. 
     

    void *Battle_TypeInfo = *(void **)getRealOffset(0x45958B8);
                if(Battle_TypeInfo != nullptr)
                {
                    void *Battle_Static = *(void **)((uint64_t)Battle_TypeInfo + 0xB8);
                    
                    if(Battle_Static != nullptr)
                    {
                        void *Battle_Class = *(void **)((uint64_t)Battle_Static + 0x88);
                        
                        if(Battle_Class != nullptr)
                        {
                            
                            
                            me->player = *(void **)((uint64_t)Battle_Class + 0x20);
                            if(me->player != nullptr)
                            {
                                me->position = GetPlayerLocation(me->player);
                                me->trans = Component_GetTransform(me->player);           
                               
                                me->third = *(void **)((uint64_t)Battle_Class + 0x30);
                                if(me->third != nullptr)
                                {
                                    me->camera = *(void **)((uint64_t)me->third + 0x58);
                                    me->camposition = GetPlayerLocation(me->third);            
                                }

                                
                            }

                            monoDictionary2<long*, void **> *OtherPlayers = *(monoDictionary2<long*, void **> **)((uint64_t)Battle_Class + 0x68);

                                
                           

                            if(OtherPlayers != nullptr)
                            {
                                for(int i = 0; i < OtherPlayers->getSize(); i++)
                                {
                                    enemy->object = OtherPlayers->getValues()[i];

                                    if(enemy->object != nullptr)
                                    {

                                        monoArray<void **> *Parts = *(monoArray<void **> **)((uint64_t)enemy->object + 0x60);
                                        enemy->trans = Component_GetTransform(enemy->object);
                                        enemy->position = GetPlayerLocation(enemy->object);

                                        enemy->head = *(void **)((uint64_t)enemy->object + 0x80);
                                        if(enemy->head != nullptr)
                                        {
                                            enemy->headposition = GetTransformLocation(enemy->head);
                                            enemy->headposition.y += 0.20; 


                                        } 
                                        
                                        if(me->camera != nullptr)
                                        {

                                            float height =  enemy->w2sposition.y - enemy->w2sheadposition.y;
                                            float width = height / 2.4;

                                           

     

    and here is *monster_typeinfo

    void *MonsterMgr_TypeInfo = *(void **)getRealOffset(0x45CDDE0);

                if(MonsterMgr_TypeInfo != nullptr)
                {
                    void *MonsterMgr_Static = *(void **)((uint64_t)MonsterMgr_TypeInfo + 0xB8);
                    if(MonsterMgr_Static != nullptr)
                    {
                        void *MonsterMgr_Class = *(void **)((uint64_t)MonsterMgr_Static + 0x38);
                        if(MonsterMgr_Class != nullptr)
                        {
                            monoDictionary2<long*, void **> *MonsterDic = *(monoDictionary2<long*, void **> **)((uint64_t)MonsterMgr_Class + 0x18);
                            if(MonsterDic != nullptr)
                            {
                                for(int i = 0; i < MonsterDic->getSize(); i++)
                                {
                                    mobs->object = MonsterDic->getValues()[i];

                                    if(mobs->object != nullptr)
                                    {
                                        mobs->position = GetPlayerLocation(mobs->object);
                                        
                                        if(me->camera != nullptr)
                                        {
                                            Vector3 w2spos; 
                                

    • Like 1
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines