Search results

  1. DuFF

    CLEO Help samp server messages via chat

    The problem is this line: "018C:  play_sound 1084 at 0.0 0.0 0.0", try to replace it with "0AF8: "It works!" color -1" and you will see, that it really works. Try to find solution here, I haven't any experiences with playing sound. http://gtaforums.com/topic/403594-sa-cleo-script-tutorial/#Music
  2. DuFF

    CLEO Help samp server messages via chat

    I think this is what you want, I'm not an expert, but it should work (I haven't tested it yet)
  3. DuFF

    CLEO Help Help with scan_string

    Well, I made a simple debug script: #include <a_samp> #include <zcmd> new sstring[128]; new rand; CMD:debug(playerid) { rand = random(500); format(sstring, sizeof(sstring), "ID = %d", rand); SendClientMessage(playerid, -1, sstring); return 1; } When I use this code: {$CLEO .cs} thread...
  4. DuFF

    CLEO Help samp server messages via chat

    Try to use SAMP.GetChatString
  5. DuFF

    CLEO Help Help with scan_string

    Hello, I'm trying to make a script for RP server. When I see in the chat, that player needs my services, I have to use command "/zakaznik <ID of player>" to teleport to him and offer him my services(RP command). So I made this script: {$CLEO .cs} thread 'SERVICES' :Load wait 200 if  ...
  6. DuFF

    CLEO Help Strmid opcode

    Hello, I'm looking for opcode similar to this fuction: https://wiki.sa-mp.com/wiki/Strmid , could you help me please? Thank you.
  7. DuFF

    CLEO Help Update cleo script

    Give us your code
  8. DuFF

    CLEO Help Update cleo script

    Which script do you need to "update"? Some scripts doesn't need update..
  9. DuFF

    Money Hack ?

    I played on some shitty server.. and this script worked well. Use /money <amount> and go reconnect. But good servers have protection and this works just on primitive servers.
  10. DuFF

    CLEO Help Server dialogs

    Thank you.. I tried to use 0BC9 as you recommended, but it works just if the dialog I want to respond was opened before I typed /dialogr. So I'm asking: Is it any way how to open the dialog which wasn't opened before?
  11. DuFF

    CLEO Help Server dialogs

    1 more thing.. Could you explain me this opcode? 0B9D: dialog 1@ listbox 2@ element 3@ store_text_to 4@ data_to 5@ I don't know what listbox or element mean.
  12. DuFF

    CLEO Help Server dialogs

    Thanks a lot man! Problem fixed.. I was using the old sampfuncs v3.2 :D
  13. DuFF

    CLEO Help How to add activator to cs files ?

    Client command /wolverine. Just type /wolverine into the chat and send it :)
  14. DuFF

    CLEO Help Server dialogs

    No.. the problem isn't there.. I tried to remove all scripts and I left only "dialogr.cs" in my cleo directory. If you have some free time, could you make some code I can use for playing with server dialogs ? :D
  15. DuFF

    CLEO Help Server dialogs

    So I made: Help dialog ID = 108, I typed /dialogr 108 1 0 (dialog ID 108, listitem 1 - settings, button 0 - left button OK) and it crashed my game again.
  16. DuFF

    CLEO Help Server dialogs

    So can I try 0BD9 to make the dialog client sided?
  17. DuFF

    CLEO Help Server dialogs

    Hello! I would like to ask.. Is there any way how to open dialog on server if I know the dialog's ID? For example I know that ID of registration dialog is 1, so how can I open it? I have already tried this code, which I made myself: So at first, I used /getid when registration dialog was...
  18. DuFF

    CLEO Help SAMPFUNCS

    Are you using SAMP 0.3z ?
  19. DuFF

    CLEO Help [HELP] Weapon hack crashing the game

    Actor.StorePos($PLAYER_ACTOR, 5@, 6@, 7@) 032B: $SAWN = create_weapon_pickup #SAWNOFF type 3 ammo 3@ at 5@ 6@ 7@ repeat wait 0 until 0214: pickup $SAWN picked_up 0AF9: samp say_msg "/giveammo %d %d" 4@ 3@ 0215: destroy_pickup $SAWN 31@ = 0 This is unreachable code.. Because 31@ is...
  20. DuFF

    CLEO Help [HELP] Weapon hack crashing the game

    Hello ugbase! I'm newbie on this forum and my english skills aren't very good, so first I want to say sorry for my bad english and I hope you understand me. I tried to do weapon hack.. I have already read a lot of themes about it, I tried everything, but when I type /sawn the game is still...
Top