Search results

  1. M

    Collection

    This is sniper auto zoom, can someone edit it so it zooms only till half. Maybe zoom for 500 milliseconds then release zoom. {$CLEO .cs} //-------------MAIN--------------- 0000: NOP :Noname_2 0001: wait 0 ms 00D6: if and 80DF: not actor $PLAYER_ACTOR driving 8B4C: not samp is_dialog_active...
  2. M

    Collection

    Hey Robinson, it's for HZRP. Basically need a way to keep count of materials spent for sold guns using command [/sellgun ID weaponname price] * You offered Name Surname to buy a shotgun for $0. * You have sold Name Surname, a Shotgun for $0. * Myname Mysurname created a Gun from Materials, and...
  3. M

    Collection

    * Name of the mod : n/a * Where you saw it : n/a * What do you want : Every time I sell gun it writes line in .ini file. * Details : This line is from chatlog * You have sold Name Surname, a Deagle for $0. So I need cleo/lua that copy that line and paste it in seperate .ini file. Need for these...
  4. M

    Collection

    * Name of the mod: TriggerfingerOnClick.cs * Where you saw it: There is triggerfinger cleo already available * What do you want: Triggerfinger that works only when left mouse button is pressed and hold down * Details: I added cleo, if someone could edit that it works only when left mouse button...
  5. M

    CLEO Help Show dialog when press a key

    When I try to compile it
  6. M

    CLEO Release Notepad

    Have sampfuncs 5.4.1, have cleo 4. All other cleos works, this one crashes the game when pressing f9.
  7. M

    CLEO Release Notepad

    Doesn't work SA-MP 0.3.7
  8. M

    CLEO Help Stop loop when message appears on chat

    Works amazing, solved.
  9. M

    CLEO Help Stop loop when message appears on chat

    In your script when I press button (113) to disable or "When this appears on chat" it doesn't switch off at all. It does show "Shows toggle message {DC143C}OFF" in chat but it doesn't stop spamming "/thiscommand"
  10. M

    CLEO Help Stop loop when message appears on chat

    So, I made loop but I want it to auto disable when certain message appears on chat. Here is code, what I do wrong that it doesn't auto stop? {$CLEO .cs} 0000: while not SAMP.Available() wait 100 end 0AC8: 0@ = allocate_memory_size 250 0AC8: 1@ = allocate_memory_size 250 WHILE TRUE WAIT 0...
  11. M

    CLEO Help Send command if chat message appear.

    This is how it looks in cleo, but need on .lua {$CLEO .cs} 0000: NOP :Init wait 100 if SAMP.Available jf @Init 0AC8: 0@ = allocate_memory_size 250 0AC8: 1@ = allocate_memory_size 250 jump @WaitForCap :WaitForCap wait 0 for 30@ = 98 to 99 0B75: samp get_chat_string 30@ text_to 0@...
  12. M

    CLEO Help Send command if chat message appear.

    ah right, I should make in two functions? This way in log file it says -Loaded successfully. if I use string.find then it shows error. require"lib.moonloader" require"lib.sampfuncs" function main() if not isSampLoaded() or not isSampfuncsLoaded() then return end while not...
  13. M

    CLEO Help Send command if chat message appear.

    this way still doesn't work, no clue. function onAddChatMessage(text) if string.find(text, "test this") ~= 0 then sampSendChat(string.format("/thiscommand")) end return false end
  14. M

    [CLOSED] Accepting request

    I already made by myself, thanks.
  15. M

    CLEO Help Send command if chat message appear.

    So I made like this and it still doesn't send message on "key words" in samp chat. function main() if not isSampLoaded() or not isSampfuncsLoaded() then return end while not isSampAvailable() do wait(100) end while true do wait(100) if string.find(text, "test this")...
  16. M

    CLEO Help Send command if chat message appear.

    What I do wrong? I want command to trigger if chat message appear. On lua. function onAddChatMessage(text) if (text == '*Bodyguard Name Surname wants to protect you for $200, type /accept bodyguard to accept.') then sendCommand('/accept bodyguard') end return false end
  17. M

    [CLOSED] Accepting request

    1. Name of the mod: n/a 2. Where you saw it: n/a 3. What do you want: When write in chat (( /cap )) it starts to spam command (( /capturf )) every 1.1 second. 4. Details: Ideally it stops spam command when message appears in chat "((random name)) is attempting to take control over the ((random...
Top