Deji Posted November 23, 2008 Share Posted November 23, 2008 3 questions... 1. What does NOP mean? 2. What the hell would "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" mean? 3. What the hell are rockstar doing typing things like: 0662: NOP "I__________________________I" ??? Is that supposed to be a smiley of some sort? Link to comment Share on other sites More sharing options...
Donny78 Posted November 23, 2008 Share Posted November 23, 2008 Wierd. 'A' is 0x41 in Hex, maybe this means something like that 0x90 (nop) thing ? Link to comment Share on other sites More sharing options...
Deji Posted November 23, 2008 Author Share Posted November 23, 2008 06CF: NOP 0 0662: NOP "AAAAAAAAA" 0914: NOP 0 (to 77) 8596: not NOP_false $PLAYER_CHAR 03A9: NOP 03A7: NOP $CURRENT_WANTED_LIST 091B: NOP 0662: NOP "H" 0662: NOP "G" 0662: NOP "F" 0662: NOP "E" 0662: NOP "D" 0663: NOP "IGFIDX" $GIRLFRIEND That's just SOME of them. Any explanations? Link to comment Share on other sites More sharing options...
ZAZ Posted November 23, 2008 Share Posted November 23, 2008 www.acronymfinder.com/NOP.html CLEO MODS CLEO Script Tutorial Link to comment Share on other sites More sharing options...
coin-god Posted November 23, 2008 Share Posted November 23, 2008 NOP: No Operation. Link to comment Share on other sites More sharing options...
Deji Posted November 23, 2008 Author Share Posted November 23, 2008 NOP: No Operation. Sooo... What's "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" ? The reason I ask is I've found a script that randomly has "AAA..." in and it's not defined anywhere, also... I've seen NOP being used to display text... Which is strange considering it's "No Operation" I actually knew what NOP was, I just didn't know what the use for it was in San Andreas. Link to comment Share on other sites More sharing options...
ZAZ Posted November 23, 2008 Share Posted November 23, 2008 NOP: No Operation. Sooo... What's "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" ? The reason I ask is I've found a script that randomly has "AAA..." in and it's not defined anywhere, also... I've seen NOP being used to display text... Which is strange considering it's "No Operation" I actually knew what NOP was, I just didn't know what the use for it was in San Andreas. It seems that aaa is a dummy script compile a total stripped main without extern scripts and sannybuilder compiles also a script.img open this script.img with img-tool and extract the aaa.scm aaa.scm includes nearly nothing, maybe just a header CLEO MODS CLEO Script Tutorial Link to comment Share on other sites More sharing options...
Deji Posted November 23, 2008 Author Share Posted November 23, 2008 NOP: No Operation. Sooo... What's "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" ? The reason I ask is I've found a script that randomly has "AAA..." in and it's not defined anywhere, also... I've seen NOP being used to display text... Which is strange considering it's "No Operation" I actually knew what NOP was, I just didn't know what the use for it was in San Andreas. It seems that aaa is a dummy script compile a total stripped main without extern scripts and sannybuilder compiles also a script.img open this script.img with img-tool and extract the aaa.scm aaa.scm includes nearly nothing, maybe just a header Hmm... Still don't get what use it could be. Also, I've found a CLEO Script that loads custom missions.... 00D6: if0AAB: file_exists "CLEO/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA.CM" 0000: NOP 0A94: start_custom_mission "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" 0000: NOP 0900: unknown_set_object "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~N~PRESS ~Y~ENTER ~W~TO LOAD MISSION." 0000: NOP 0900: unknown_set_object "CANCELLED." 0000: NOP 0900: unknown_set_object "~R~FILE NOT FOUND." 0000: NOP 0900: unknown_set_object "~G~FILE FOUND.~N~~W~LOAD MISSION..." 0000: NOP How would that work out? CLEO Scripts don't have script.img's Link to comment Share on other sites More sharing options...
ZAZ Posted November 23, 2008 Share Posted November 23, 2008 NOP: No Operation. Sooo... What's "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" ? The reason I ask is I've found a script that randomly has "AAA..." in and it's not defined anywhere, also... I've seen NOP being used to display text... Which is strange considering it's "No Operation" I actually knew what NOP was, I just didn't know what the use for it was in San Andreas. It seems that aaa is a dummy script compile a total stripped main without extern scripts and sannybuilder compiles also a script.img open this script.img with img-tool and extract the aaa.scm aaa.scm includes nearly nothing, maybe just a header Hmm... Still don't get what use it could be. Also, I've found a CLEO Script that loads custom missions.... 00D6: if0AAB: file_exists "CLEO/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA.CM" 0000: NOP 0A94: start_custom_mission "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" 0000: NOP 0900: unknown_set_object "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~N~PRESS ~Y~ENTER ~W~TO LOAD MISSION." 0000: NOP 0900: unknown_set_object "CANCELLED." 0000: NOP 0900: unknown_set_object "~R~FILE NOT FOUND." 0000: NOP 0900: unknown_set_object "~G~FILE FOUND.~N~~W~LOAD MISSION..." 0000: NOP How would that work out? CLEO Scripts don't have script.img's this: 0A94: start_custom_mission "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" can only work if a AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA.cm exist in cleo folder CLEO MODS CLEO Script Tutorial Link to comment Share on other sites More sharing options...
james227uk Posted November 23, 2008 Share Posted November 23, 2008 You can replace AAAAAAAAAAA with a message of your choice. You can put your name in the script basically. Thats what I used it for Link to comment Share on other sites More sharing options...
HayashibaraN Posted November 25, 2008 Share Posted November 25, 2008 You can replace AAAAAAAAAAA with a message of your choice. You can put your name in the script basically. Thats what I used it for Does that mean it's some sort of global variable? Just a guess... Link to comment Share on other sites More sharing options...
coin-god Posted November 25, 2008 Share Posted November 25, 2008 You can replace AAAAAAAAAAA with a message of your choice. You can put your name in the script basically. Thats what I used it for Does that mean it's some sort of global variable? Just a guess... No, it is not a Variable. Its just Text. Link to comment Share on other sites More sharing options...
HayashibaraN Posted November 26, 2008 Share Posted November 26, 2008 You can replace AAAAAAAAAAA with a message of your choice. You can put your name in the script basically. Thats what I used it for Does that mean it's some sort of global variable? Just a guess... No, it is not a Variable. Its just Text. Wait, so basically that string is a stand in for something else? It does seem like AAAAAAAAAAA is a place holder for another string to me. Link to comment Share on other sites More sharing options...
spaceeinstein Posted November 26, 2008 Share Posted November 26, 2008 It's no operation. The opcode looks like it used to do something but right now it does nothing at all. Since it's one of the few long strings that does get compiled into the script, we put it into good use. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now