HI
Can Somebody help me to fix it
When i join the game It's going to be slow motion
{$CLEO .cs}
0000:
REPEAT
WAIT 0
UNTIL 0AFA: is_samp_available // Wait until SAMP is available
:Start
WAIT 0
// Listen for chat messages
if
0C47: "Your Verification code is" found_in_string 1@ // Check if message contains the phrase
then
WAIT 100 // Small delay to ensure message is captured
0AF9: format 2@ "%s" 1@ // Store the entire chat message into variable 2@
// Extract the verification code
0B35: parse_string 2@ "Your Verification code is %s send it in chat" to_string 3@
// Send the extracted code in chat
Say 3@
end
jump @Start
Can Somebody help me to fix it
When i join the game It's going to be slow motion
{$CLEO .cs}
0000:
REPEAT
WAIT 0
UNTIL 0AFA: is_samp_available // Wait until SAMP is available
:Start
WAIT 0
// Listen for chat messages
if
0C47: "Your Verification code is" found_in_string 1@ // Check if message contains the phrase
then
WAIT 100 // Small delay to ensure message is captured
0AF9: format 2@ "%s" 1@ // Store the entire chat message into variable 2@
// Extract the verification code
0B35: parse_string 2@ "Your Verification code is %s send it in chat" to_string 3@
// Send the extracted code in chat
Say 3@
end
jump @Start