Collection

Status
Not open for further replies.

0x_

Wtf I'm not new....
Administrator
Joined
Feb 18, 2013
Messages
1,118
Reaction score
166
First of all, make sure you read the forum rules
Second, you're in the
CLEO section, don't request exe/dll or others files.

Copy/paste this simple form in a new reply and just fill it out.

Code:
* Name of the mod (if the mod doesn't exist, you don't have to tell one):
* Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not):
* What do you want (the most important part, explain this carefully)
* Details (add more details to your request)
* On/off key (specify it):

The name should also be somehow related to the mod, so others that may look for the same thing find it easier.
Try your best to explain what you really want and need.
 
Last edited:
Voting on this suggestion has been paused.

davidel

Well-known member
Joined
Jan 17, 2020
Messages
207
Reaction score
7
Location
Germania
* Mod name (if the mod does not exist, you do not need to say so): I don't think it has a name, but I would call it "start engine automatically"
* Where you saw it (not on the server, we mean if you saw videos / screenshots about it or not): I have not seen anyone with the cleo but I know it exists
* What do you want (the most important part, please explain this carefully)? I want the engine to start automatically when getting into a car
* Details (add more details to your request) the key to start the engine on the server is number 2, I don't know if this influences but I need the engine to turn on, just that.
* On / off key (specify): It is not necessary an activation or deactivation key, which is activated when entering the server and cannot be deactivated.

with this one you can drive any vehicle, doesn't matter if the engine is on/off
Code:
{$CLEO .cs}
0000: NOP

:engine
wait 0
if Actor.Driving($PLAYER_ACTOR)
then
31@ = Actor.CurrentCar($PLAYER_ACTOR)
0ABF: set_vehicle 31@ engine_state_to 1
end
jump @engine
it is what you were looking for? or you want to press the 2 BUTTON which starts the engine? and automatically the server text like "Dheyker starts the engine"
 

AidanGucci

Active member
Joined
Sep 19, 2017
Messages
98
Reaction score
8
* Name of the mod (if the mod doesn't exist, you don't have to tell one): Sending a command to the server every 1.5 minutes
* Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): N/A
* What do you want (the most important part, explain this carefully) Sending just a "/" to the server
* Details (add more details to your request) I just need a cleo which sends "/" (without the brackets) to the server. Just like when we type a command we do /command. I only need it to send / and not the whole command.
* On/off key (specify it): /frm
Bump. It's very simple, but I just don't know how to do it
@Parazitas, help pls?
 

habinabi

Active member
Joined
Nov 10, 2019
Messages
51
Reaction score
2
Location
Czech Republic
Name of the mod (if the mod doesn't exist, you don't have to tell one): headshot aimbot
* Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): people using it alot on different server where headshot system is available.
* What do you want (the most important part, explain this carefully). I want a headshot aimbot which should work with sniper most important. There is one perfect aimbot availabale which you guys have seen maybe that activate on alt+1 but now when I use that and aim at someone it spin 180 degree automatically and aim to the ground. I can attach that too if you people can fix that for me or can give me only an aimbot for headshot not any multihack so would be great.
* Details (add more details to your request): n/a
* On/off key (specify it): any key but not command. alt +1 or "sniper" as cheat code or any key.
please help me as soon as possible , I trying since few weeks but can't find any.

Hi, I had exactly the same problem a few days back. The problem was that I put variables in one script that were not Local, but were Global. Try overwriting the variable from $ var, etc... to 0@, 1@, 2@, etc...
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,116
Solutions
5
Reaction score
882
Location
Lithuania
* Name of the mod (if the mod doesn't exist, you don't have to tell one): Sending a command to the server every 1.5 minutes
* Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): N/A
* What do you want (the most important part, explain this carefully) Sending just a "/" to the server
* Details (add more details to your request) I just need a cleo which sends "/" (without the brackets) to the server. Just like when we type a command we do /command. I only need it to send / and not the whole command.
* On/off key (specify it): /frm
Without SAMPFUNCS
Any SAMP

PHP:
{$CLEO .cs}

0000:

repeat
wait 1000
0A8D: 0@ = readMem 0xC8D4C0 sz 4 vp 0
until 0@ == 9 // SAMP_IS_READY

0AB1: @get_samp_version_id 0 _returned: id 1@

32@ = 0 // keep timer active

while true
wait 0

if 0256:   player $PLAYER_CHAR defined
then 
    // Command - create and compare
    0AB1: @GetLastSentTextFromChatBox 1 SampVersionID 1@ _Returned: Command 2@ Text 3@  
    0AC8: 4@ = allocate_memory_size 1024
    0AD3: 4@ = format "/autosend"
    if 0AB1: @cmpString1andString2 2 String1 3@ String2 4@
    then
        0A8C: write_memory 3@ size 1 value 0 virtual_protect 0 // clear last sent text from chatbox to stop infinity checking..
        if 31@ == false
        then
            31@ = true
            0AC8: 5@ = allocate_memory_size 1024
            0AD3: 5@ = format "{FFFFFF}AutoSend: {00FF00}ON"
            0AB1: @Chatmsg 3 SampVersionID 1@ text 5@ color 0xFF00FF00
            32@ = 0 // reset timer - so now it counts from start 
        else
            31@ = false
            0AC8: 5@ = allocate_memory_size 1024
            0AD3: 5@ = format "{FFFFFF}AutoSend: {FF0000}OFF"
            0AB1: @Chatmsg 3 SampVersionID 1@ text 5@ color 0xFFFF0000
        end
    end
    // end of command
   
   if 31@ == true
   then
        if 32@ > 1500 // if 1,5sec passed then..
        then
            0AC8: 6@ = allocate_memory_size 1024
            0AD3: 6@ = format "/" // formating / creating command 
            0AB1: @SEND_CMD 2 SampVersionID 1@ Command: 6@
            32@ = 0  // reset timer - so now it counts from start 
        end
    end
end
    
end 

:get_samp_version_id
// 0AB1: @get_samp_version_id 0 _returned: id 0@
30@ = 0
IF 0AA2: 31@ = load_library "samp.dll" // IF and SET
THEN
    31@ += 0x128
    0A8D: 29@ = read_memory 31@ size 4 virtual_protect 1
    IF 29@ == 0x5542F47A
    THEN // 0.3.7 R1
        30@ = 1
    END

    IF 29@ == 0x59C30C94
    THEN // 0.3.7 R2
        30@ = 2
    END

    IF 29@ == 0x5A6A3130
    THEN // 0.3.DL
        30@ = 3
    END

    31@ -= 8 // reading samp.dll + 0x120
    0A8D: 29@ = read_memory 31@ size 4 virtual_protect 1

    IF 29@ == 0x5C0B4243
    THEN // 0.3.7 R3
        30@ = 4
    END

    IF 29@ == 0x5DD606CD
    THEN // 0.3.7 R4
        30@ = 5
    END
END
0AB2: ret 1 30@

:GetLastSentTextFromChatBox
{
    0AB1: @GetLastSentTextFromChatBox 1 SampVersionID 5 _Returned: Command 0@ Text 1@
}
IF 0AA2: 31@ = "samp.dll"
THEN        
    IF 0@ == 1 // 0.3.7 R1
    THEN
        0A8E: 30@ = 31@ + 0x21A0B8 // CHAT_INPUTBOX_OFFSET
        0A8D: 30@ = readMem 30@ sz 4 vp 0
        0A8E: 29@ = 30@ + 0x14E5 // COMMAND_OFFSET
        0A8E: 28@ = 30@ + 0x1565 // TEXT_OFFSET
    END
 
    IF 0@ == 2 // 0.3.7 R2
    THEN
        0A8E: 30@ = 31@ + 0x21A0F0 // CHAT_INPUTBOX_OFFSET
        0A8D: 30@ = readMem 30@ sz 4 vp 0
        0A8E: 29@ = 30@ + 0x14E5 // COMMAND_OFFSET
        0A8E: 28@ = 30@ + 0x1565 // TEXT_OFFSET
    END
 
    IF 0@ == 3 // 0.3.DL
    THEN
        0A8E: 30@ = 31@ + 0x2ACA14 // CHAT_INPUTBOX_OFFSET
        0A8D: 30@ = readMem 30@ sz 4 vp 0
        0A8E: 29@ = 30@ + 0x14E5 // COMMAND_OFFSET
        0A8E: 28@ = 30@ + 0x1565 // TEXT_OFFSET
    END
 
    IF 0@ == 4 // 0.3.7 R3
    THEN
        0A8E: 30@ = 31@ + 0x26E8CC // CHAT_INPUTBOX_OFFSET
        0A8D: 30@ = readMem 30@ sz 4 vp 0
        0A8E: 29@ = 30@ + 0x14E5 // COMMAND_OFFSET
        0A8E: 28@ = 30@ + 0x1565 // TEXT_OFFSET
    END
 
    IF 0@ == 5 // 0.3.7 R4
    THEN
        0A8E: 30@ = 31@ + 0x26E9FC // CHAT_INPUTBOX_OFFSET
        0A8D: 30@ = readMem 30@ sz 4 vp 0
        0A8E: 29@ = 30@ + 0x14E5 // COMMAND_OFFSET
        0A8E: 28@ = 30@ + 0x1565 // TEXT_OFFSET
    END
END
0AB2: 2 29@ 28@

:cmpString1andString2
{
    Example: 0AB1: @cmpString1andString2 2 String1 1@ String2 2@
    In: 0@, 1@ - strings
    Out: result 0/1
}
for 7@ = 0 to 1024
    0A8D: 2@ = read_memory 0@ size 1 virtual_protect 0   
    0A8D: 3@ = read_memory 1@ size 1 virtual_protect 0
    0@ += 1
    1@ += 1
    if 003B: 2@ == 3@
    jf break
    if and
    2@ == 0
    3@ == 0
    then
        0485: return_true
        ret 0
    end
end
059A: return_false
ret 0 

:Chatmsg
{
    0AB1: @Chatmsg 3 SampVersionID 0@ text 1@ color 0xFF00FF00
}
IF 0AA2: 31@ = "samp.dll"
THEN
    IF NOT 0@ < 1
    THEN
        IF 0@ == 1 // 0.3.7 R1
        THEN
            0A8E: 30@ = 31@ + 0x21A0E4            // SAMP_CHAT_INFO_OFFSET (R1)
            0A8D: 30@ = readMem 30@ sz 4 vp 0     // pChat;
            0A8E: 29@ = 31@ + 0x64010             // FUNC_ADDTOCHATWND (R1)
        END
    
        IF 0@ == 2 // 0.3.7 R2
        THEN
            0A8E: 30@ = 31@ + 0x21A0EC            // SAMP_CHAT_INFO_OFFSET (R2)
            0A8D: 30@ = readMem 30@ sz 4 vp 0     // pChat;
            0A8E: 29@ = 31@ + 0x640E0            // FUNC_ADDTOCHATWND (R2)
        END
    
        IF 0@ == 3 // 0.3.DL
        THEN
            0A8E: 30@ = 31@ + 0x2ACA10            // SAMP_CHAT_INFO_OFFSET (DL)
            0A8D: 30@ = readMem 30@ sz 4 vp 0     // pChat;
            0A8E: 29@ = 31@ + 0x67650             // FUNC_ADDTOCHATWND (DL)
        END
    
        IF 0@ == 4 // 0.3.7 R3
        THEN
            0A8E: 30@ = 31@ + 0x26E8C8            // SAMP_CHAT_INFO_OFFSET (R3)
            0A8D: 30@ = readMem 30@ sz 4 vp 0     // pChat;
            0A8E: 29@ = 31@ + 0x67460             // FUNC_ADDTOCHATWND (R3)
        END
    
        IF 0@ == 5 // 0.3.7 R4
        THEN
            0A8E: 30@ = 31@ + 0x26E9F8            // SAMP_CHAT_INFO_OFFSET (R4)
            0A8D: 30@ = readMem 30@ sz 4 vp 0     // pChat;
            0A8E: 29@ = 31@ + 0x67BA0             // FUNC_ADDTOCHATWND (R4)
        END
          
        0AA6: call 29@ struct 30@ num_params 5 pop 0 params 0 2@ 0 1@ 8
    END
END
0AB2: 0 

:SEND_CMD
// 0AB1: @SEND_CMD 2 SampVersionID 1 Command: 7@
IF 0AA2: 2@ = "samp.dll"
THEN
    IF 0@ == 1 // 0.3.7 R1
    THEN      
        0A8E: 3@ = 2@ + 0x65C60
    END
    IF 0@ == 2 // 0.3.7 R2
    THEN      
        0A8E: 3@ = 2@ + 0x65D30
    END

    IF 0@ == 3 // 0.3.DL
    THEN      
        0A8E: 3@ = 2@ + 0x69340
    END

    IF 0@ == 4 // 0.3.7 R3
    THEN       
        0A8E: 3@ = 2@ + 0x69190
    END

    IF 0@ == 5 // 0.3.7 R4
    THEN      
        0A8E: 3@ = 2@ + 0x698C0
    END
    0AA5: call 3@ num_param 1 pop 0 1@
END
0AB2: 0
 

aPELAobr

Active member
Joined
Jan 13, 2015
Messages
185
Reaction score
0
* Name of the mod: Onfoot tp as Incar
* Where you saw it: Never saw before
* What do you want: I want a cleo that fake sends to the server that i'm Incar as some car ID (editable), for example when the server request u to be in a pizza scooter but u want to tp onfoot).
* Details this is like snipet: i want this to farm with invisible activade and to be more undetectable.
* On/off key (specify it): developer decides

@Parazitas god, if u could help.. parazitas (god) bless u (your self) mai frend
 

RazooorS

Active member
Joined
Feb 16, 2019
Messages
60
Reaction score
0
* Mod name (if the mod does not exist, you do not need to say so): i dont know i didnt see this but when someone text enter in chat like "kuca" i auto replay in a second in chat with command /buy
* Where you saw it (not on the server, we mean if you saw videos / screenshots about it or not): i didnt see this but when someone text enter in chat like "kuca" i auto replay in a second in chat with command /buy
* What do you want (the most important part, please explain this carefully)? autoreplay in a second in chat when in chat appear "kuca"
* Details (add more details to your request)> autoreplay in a second in chat when in chat appear "kuca"
* On / off key (specify): /krim
 

RazooorS

Active member
Joined
Feb 16, 2019
Messages
60
Reaction score
0
* Mod name (if the mod does not exist, you do not need to say so): i dont know i didnt see this but when someone text enter in chat like "kuca" i auto replay in a second in chat with command /buy
* Where you saw it (not on the server, we mean if you saw videos / screenshots about it or not): i didnt see this but when someone text enter in chat like "kuca" i auto replay in a second in chat with command /buy
* What do you want (the most important part, please explain this carefully)? autoreplay in a second in chat when in chat appear "kuca"
* Details (add more details to your request)> autoreplay in a second in chat when in chat appear "kuca"
* On / off key (specify): /krim
@Parazitas i think you can help me with this pls :3
 

okayokay

New member
Joined
Mar 20, 2021
Messages
2
Reaction score
0
Location
Saudia Arab
Hi, I had exactly the same problem a few days back. The problem was that I put variables in one script that were not Local, but were Global. Try overwriting the variable from $ var, etc... to 0@, 1@, 2@, etc...
I dont understand these thingz can you guide me in simple words please, i'll be very thankful to you for that kindness. Or I can PM you if you can permit me to do so. or give me your aimbot so i can use that. plz
 

RazooorS

Active member
Joined
Feb 16, 2019
Messages
60
Reaction score
0
* Name of the mod (if the mod doesn't exist, you don't have to tell one): crasher
* Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not):
https://www.part.lt/img/0579710e16c1346fa5e6e1df453ea64e155.png
* What do you want (the most important part, explain this carefully)
* Details (add more details to your request) when i type /crash id players got this https://www.part.lt/img/0579710e16c1346fa5e6e1df453ea64e155.png and got crash...
* On/off key (specify it): /crash id
 

AidanGucci

Active member
Joined
Sep 19, 2017
Messages
98
Reaction score
8
* Mod name (if the mod does not exist, you do not need to say so): Specific commands in a loop
* Where you saw it (not on the server, we mean if you saw videos / screenshots about it or not): N/A
* What do you want (the most important part, please explain this carefully)? I want "/getmats" > "/drop packages" and repeat to be played in a loop upon activating
* Details (add more details to your request): For example, the script will play /getmats and then /drop packages and then again /getmats then /drop package. The loop must continue till the user deactivates it using the designated hotkey
* On / off key (specify): M + P

@Parazitas your help is appericiated!
 

SadeceSimon

New member
Joined
Aug 30, 2020
Messages
2
Reaction score
0
Location
Turkey/Samsun
* Mod name (if the mod does not exist, you do not need to say so): Static Crosshair
* Where you saw it (not on the server, we mean if you saw videos / screenshots about it or not):
* What do you want (the most important part, please explain this carefully)? When I entered *CROSSHAIR* my crosshair got static(doesn't moving when I shoot)
* Details (add more details to your request): For example,
* On / off key (specify): on key : type crosshair off-key : type OFF
 

Ice555

Member
Joined
Mar 11, 2021
Messages
18
Solutions
1
Reaction score
2
Location
Lithuania
Name of the mod (if the mod doesn't exist, you don't have to tell one): autoscroll
* Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): no need
* What do you want (the most important part, explain this carefully)
* Details (add more details to your request) i want that if you type scroll like gta code it should enable it or disable it
* On/off key (specify it): its automatic, i just dont want him be enabled everytime
 

Attachments

  • Autoscroll.cs
    18.7 KB · Views: 18

Excelds

Active member
Joined
Apr 17, 2021
Messages
101
Reaction score
11
Location
Earth
* Name of the mod (if the mod doesn't exist, you don't have to tell one): Samp Cleo Keybinder
* Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): There is a guy who makes and sells it. If you wonder why he sells, because the keybinder doesn't open the chat and its cleo.
* What do you want (the most important part, explain this carefully): I want help to make some keybinder, that doesnt open chat and is cleo.
* Details (add more details to your request): Help me to make a cleo keybinder, also i want to add something not like login system, i want to add whitelist system, like if there is someone named Exuc in samp, he needs to use Exuc in every servers to work, so if he gives to some random the keybinder, it will work if he uses only his Nick (exuc). IF you want you can give me dirrect code.
* On/off key (specify it): No
 

SobFoX

Expert
Joined
Jul 14, 2015
Messages
1,397
Solutions
4
Reaction score
897
Location
Israel
* Mod name (if the mod does not exist, you do not need to say so): Static Crosshair
* Where you saw it (not on the server, we mean if you saw videos / screenshots about it or not):
* What do you want (the most important part, please explain this carefully)? When I entered *CROSSHAIR* my crosshair got static(doesn't moving when I shoot)
* Details (add more details to your request): For example,
* On / off key (specify): on key : type crosshair off-key : type OFF
 

SobFoX

Expert
Joined
Jul 14, 2015
Messages
1,397
Solutions
4
Reaction score
897
Location
Israel
* Name of the mod (if the mod doesn't exist, you don't have to tell one): crasher
* Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not):
https://www.part.lt/img/0579710e16c1346fa5e6e1df453ea64e155.png
* What do you want (the most important part, explain this carefully)
* Details (add more details to your request) when i type /crash id players got this https://www.part.lt/img/0579710e16c1346fa5e6e1df453ea64e155.png and got crash...
* On/off key (specify it): /crash id
 

SobFoX

Expert
Joined
Jul 14, 2015
Messages
1,397
Solutions
4
Reaction score
897
Location
Israel
* Name of the mod (if the mod doesn't exist, you don't have to tell one): No lamp collision in car
* Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not):
* What do you want (the most important part, explain this carefully): If player hold left shift mode will be active
* Details (add more details to your request): Check end of topic please.
* On/off key (specify it): left shift

Hi, I would need a lot of undetectable hacks at a really big level. I can pay money for them. I would like to establish cooperation with someone. Write me messages.
 
Status
Not open for further replies.
Top