Search results

  1. G

    CLEO Help SYNC Send Chat String without nametag

    Hi, Is their any snippet or code to send SYNC string in the chatlog without the name_name ? I know their is "" 0AF9: samp say_msg "lol" "" but the nametag is still on the chatlog. And could someone translate in order for me to understand the difference ? 0C8F=1,samp process_chat_input %1d%...
  2. G

    CLEO Help Get info from server script

    Hi, Here is a server script for the gym where you have to hit the arrow keyboard to complete it. Is their a way to get the information about "what arrow you need to hit" with CLEO ? Thanks https://youtu.be/9Pikvo89TV4//
  3. G

    CLEO Help Use NOP with CLEO ?

    Hello guys, Sobeit has multiples functions that use NOP + things (NOPSetPos) (NOPremoveblablabla) Is their opcodes to do that in cleo ?
  4. G

    CLEO Help Alloc + 0AD3: + 0AD2: + 0AD1: // Memory transfert Question

    Hello guys, I am a bit lost about what I am coding. I got multiple render.Drawtext() in my main, and the strings they show are updated by a 0AD1: function. I got some crashes and I think it's about memory problem. I don't really know how to handle my memory in this case. In fact, I would like...
  5. G

    CLEO Help [Lock] Reduce size of render.drawtext() [Lock]

    Hello cheater team. Is their any way to lower the size of the Render.Texdraw() fonction ? (things on left of the screen) http://image.noelshack.com/fichiers/2016/03/1453661190-sa-mp-654.png
  6. G

    CLEO Help Snippet to get Zone(Area) from 3D position ?

    Hello! A wonderfull CLEO alrdeay exist in which you see the current zone (area) you are in. http://image.noelshack.com/fichiers/2016/03/1453441365-temple.png I checked the code of this cleo but it's a pure big mess. I tried by myself and I found: 08F1: get_zone_at 23@ 24@ 25@ nameA_to 19@v //...
  7. G

    CLEO Help [Lock] Cut a string [Lock]

    Hi I need to extract some informations from a chatlog string. See the typical sentence http://image.noelshack.com/fichiers/2016/02/1452927126-eeeeee.png The structure of the string is always the same: NAME + Rank: INTEGER + Tel: INTEGER + Random String Alloc Memory for string variables (1 2 3...
  8. G

    CLEO Help IsPlayerNametagOn/Off script ?

    Hello, I wonder if their was a command or script in cleo to detect if a streamed player is "nameON" or "NameOFF" (nametag visible or invisible in RP server) ? Thanks
  9. G

    CLEO Help NPC stuck in SAMP

    Hello, I tried to create a NPC in a SAMP server with Cleo. I want him to attack me. Everything works well, but I don't know why, the NPC is stuck and can not move. https://www.youtube.com/watch?v=QoJncGGXkew&feature=youtu.be Any idea how to counter this bug ? actor.Create(2@, 4, #MALE01...
  10. G

    CLEO Help [Silent] Get route and shows it (like GPS)

    Hi, I searched around opcodes and I found a lot of them talking about "path" or "node". I understood a "Bot" can drive from a point to another by using a defenit route. I wonder if their is any possibility to show this route or to get complete information about positions from departure to...
  11. G

    CLEO Help Get Aiming Pos of a helicopter ?

    Hello ! Everyone know this snippet to get aim position -> http://ugbase.eu/snippets/get-aiming-position/msg1002/#msg1002 i'd like the same snippet not for the camera, but the angle of a helicopter please. It's for a crosshair to shoot with the seasparrow at 3rd person view Thanks
  12. G

    CLEO Help [LOCK] Get Player from a txt file [LOCK]

    Hi, For one of my CLEO, I need to have a list of player that are already written in a .txt file. I tried this code from a Russian forum, but it only gives me the last name of the text file. (and I don't speak russian !) Can you help me please ? 0A9A: 8@ = openfile "CLEO\test.txt" mode "rt" //...
  13. G

    CLEO Help [LOCK] Part of the name that return the Samp Player ? [LOCK]

    Hi, for one of my cleo, I need a function in which you enter a part of the player name then it return the samp player ? Like /[cmd] Opcode_E Returns Player Opcode_Exe and do things after I tried with: :command 0B35: samp 31@ = get_last_command_params if 0AD4:  0@ = scan_string 31@ format...
  14. G

    CLEO Help [LOCK] Weapon ID to Weapon Name ? [LOCK]

    Hi, I want to have the weapon name with from a known weapon id. I could do 50 times [if actor 0@ current_weapon == weap_id then string] but I wonder if their was a smarter way to do it ? Any suggestion to have weapon name easier ?
  15. G

    CLEO Help [LOCK] SAMP car door status [LOCK]

    Hi, Could someone give me the opcode(s) to know the door status (lock/unlock) of a SAMP vehicule ? Thanks
  16. G

    CLEO Help [LOCK] Print string in a part of the screen [LOCK]

    Hi, In the cleo ADMIN CHECKER, we have the name id and level of a player in our screen. I would like to know how does he generate this big string ? I tried with in a function 25@ = samp.GetPlayerNickname(0@) 0C15: destination strcpy 25@ [some stuf] 0C15: destination strcpy 25@ [some...
  17. G

    CLEO Help Raknet Info [Springfield]

    Hi there. I would like to know if their is any documentation about the Raknet motion. I mean, for example, Springfield built this code about the Onplayertakedamage 3@ = BitStream.Read(0@, 1)  //0 = give, 1 = take     4@ = BitStream.Read(0@, 2)  //playerid     5@ = BitStream.Read(0@, 4) ...
  18. G

    CLEO Help Damage taken

    Hi, Is their a opcode to know how many damage I took from a shot ? Something like this: http://wiki.sa-mp.com/wiki/OnPlayerGiveDamage_FR but in cleo. I could make it with the player health, but I don't know how to get my health at time N-1. Any solution ?
  19. G

    CLEO Help [LOCK] Show something on the minimap. [LOCK]

    Hi. I would like to make a cleo that show some specific SAMP_Vehicule_ID on the minimap. (Exemple: For RP server, faction vehicules have constant samp_veh_id. so If [samp_veh_id] is stream then Show this [sam_veh_id] with position on the Minimap. I have the car handle and the samp_veh_id, I...
  20. G

    CLEO Help [LOCK] Time in SAMP ? [LOCK]

    Hi, Rapid question: Any possibility to get and store the current time in SAMP? this opcode 00BF: get_time_of_day $TIME_HOURS $TIME_MINS does not work :(
  21. G

    CLEO Help Damaged_By_Actor problem

    Hi guys, I block on something. On a script, I use a if 051A:  actor 11@ damaged_by_actor 13@ then blablablabla The problem is that when you hit the target 1 time (so the condition is true), it stays in this state, and at further loops, this condition will be also true even if you don't...
  22. G

    CLEO Help Damagez_By_Actor problem

    FAIL, delete this post please
  23. G

    CLEO Help is_char_shooting $PLAYER_ACTOR

    Hi, i would like to make a script that does something after a player just shot a bullet. I use the function 02E0: is_char_shooting $PLAYER_ACTOR, in a if, like: if 02E0: is_char_shooting $PLAYER_ACTOR then Blablablablabla end I don't know why, but this opcode doesn't work for me. I putted...
  24. G

    LSPD Chopper Camera mod

    Camera mod for passenger un LSPD Chopper Activation:                      5 Pav Num Zoom :                          6 Pav Num Lock Target                    4 Pav Num Night / Thermal vision:    7 Pav Num Thanks to OPCODE.EXE for his snippets "Get Aiming Position"...
  25. G

    LSPD Chopper Spotlight

    Not a cheat, but a pleasant mod for RP server if you are in LSPD. It's a spotlight for the LSPD Heli that follow a target. It's CLIENT SIDE so only you will see it, not other players. Activation: 8 Pav Num Engage target: 8 Pav Num Desactivation: 9 Pav Num It catch the target in a range of 30...
  26. G

    CLEO Help [LOCK] Create crosshair on free camera moving

    Hi all, I am working on a cleo which simulate de " LAPD chopper camera " I would like to create a crosshair (or whatever looks like a crosshair) to see where the camera point at. How to create crosshair in free camera mode ? Example http://youtu.be/UWK_8OfLHAw
  27. G

    CLEO Help [LOCK]Camera question

    Hi all I am making a cleo in which a camera is fixed under a LSPD heli and can rotate around that point (like a IRL helicopter camera). I managed to do it (I created an object under the heli then attached the camera at this object) I am in FREE CAMERA, so the mouse control the camera, but, i...
Top