Help Command parameter in dialog text

pwpwpwn

Member
Joined
May 4, 2024
Messages
19
Reaction score
0
{$CLEO .cs}
{$USE CLEO+}
0000: NOP

while not SAMP.Available()
wait 400
end

0B34: samp register_client_command "test" to_label @test


while true
wait 0
end

:test
wait 0
0B35: samp 1@ = get_last_command_params
0AD4: 2@ = scan_string 1@ format "%d" 3@
0B3B: samp show_dialog id 46 caption "Test Dialog" text "you typed number: %d" button_1 "Close" button_2 "" style 0 3@
0B43: samp cmd_ret

Sorry for post spam :( but im trying to learn...
This open a dialog and say "you typed number: %d" without the number i tried to put 3@ after text still not working.

Is this possible at all or im wasting my time trying?
 

Parazitas

God
Staff member
Joined
Jan 2, 2017
Messages
3,288
Solutions
6
Reaction score
929
Location
Lithuania
Sorry for post spam :( but im trying to learn...
This open a dialog and say "you typed number: %d" without the number i tried to put 3@ after text still not working.

Is this possible at all or im wasting my time trying?
PHP:
{$CLEO .cs}

0000: NOP

repeat
wait 0
until 0AFA: SAMP_IS_READY

0B34: samp register_client_command "test" to_label @test

while true
wait 0
end

:test
0B35: samp 31@ = get_last_command_params
IF 0AD4: $NOT_USED = scan_string 31@ format "%d" 30@
THEN
    0AC8: 29@ = allocate_memory_size 144
    0AD3: 29@ = format "you typed number: %d" 30@
    0B3B: samp show_dialog id 46 caption "Test Dialog" text 29@ button_1 "Close" button_2 "" style 0
    0AC9: free_allocated_memory 29@
END
0B43: samp cmd_ret
 

Parazitas

God
Staff member
Joined
Jan 2, 2017
Messages
3,288
Solutions
6
Reaction score
929
Location
Lithuania
Why need memory size etc?
PHP:
0AC8: 29@ = allocate_memory_size 144 // allocate memory to variable for text formating
0AD3: 29@ = format "you typed number: %d" 30@ // format text into allocated variable, 29@ now is text
0B3B: samp show_dialog id 46 caption "Test Dialog" text 29@ button_1 "Close" button_2 "" style 0
0AC9: free_allocated_memory 29@ // release allocated memory
 
Top