Supermacy31
Active member
- Joined
- Mar 13, 2013
- Messages
- 173
- Reaction score
- 1
This is my .ini file:
This is my cleo file:
When I go in-game and press Numpad-5 it works but the string is left out it's like John_Johnson says:
and it's blank like that. Any ideas?
Code:
[kb]
unislimit=1000
[msgsnormal
m0= /stats
m1= /help
This is my cleo file:
Code:
{$CLEO .cs}
0000:
repeat
wait 40
until 0AFA: is_samp_structures_available
:Main
wait 0
if and
0AAB: file_exists "CLEO\kbult.ini"
056D: actor $PLAYER_ACTOR defined
jf @Main
if and
0AB0: key_pressed 101
8B21: not samp is_chat_opened
then
jump @KBind
end
jump @Main
:KBind
wait 0
0AF4: 0@v = read_string_from_ini_file "cleo\kbult.ini" section "msgsnormal" key "m0"
0AF9: samp say_msg 0@ // If I put samp say_msg 0@v it doesn't seem to fix it?
0AF0: 1@ = get_int_from_ini_file "cleo\kbult.ini" section "kb" key "unislimit"
wait 1@
jump @Main
When I go in-game and press Numpad-5 it works but the string is left out it's like John_Johnson says:
and it's blank like that. Any ideas?