[CLOSED] Accepting request

Status
Not open for further replies.

Kalashas

Member
Joined
Oct 14, 2019
Messages
5
Reaction score
1
Location
Vilnius
For Anti-Afk better use this one:

Also you can combine this Anti-Afk to "Anti alt-tab" so you can let your game run while doing something else like Facebooking or watch porn without needing to play (you won't be afk) For that you need to go to:
GTA San Andreas/SAMPFUNCS/sampfuncs-setting
Open that file and set both "antipause" and "window-mode" to True
thenks
 

Sinecure

Member
Joined
Mar 28, 2015
Messages
14
Reaction score
0
Are you able to create a custom wallhack, with different nametags than the SAMPs standard?
 

Khazard11

Member
Joined
Jun 18, 2019
Messages
13
Reaction score
0
PHP:
{$CLEO .cs}

0000: 'Parazitas || UGBASE.EU'

REPEAT
   WAIT 0
UNTIL 0AFA:  SAMP_IS_READY

WHILE TRUE
   WAIT 0

IF
0B61:  samp is_local_player_spawned
THEN
    0AC8: 0@ = allocate_memory_size 260
    0AC8: 1@ = allocate_memory_size 260
    for 20@ = 95 to 99  // chat lines
    0B75: samp get_chat_string 20@ text_to 0@ prefix_to 1@ color_to 2@ prefix_color_to 3@
    IF
    0C29: $NOT_USED = stristr string1 0@ string2 "/signcheck"
    THEN
        say "/signcheck"
        0AF8: " " -1 // add emty msg
        0AF8: " " -1 // add emty msg
        0AF8: " " -1 // add emty msg
    END
    end // end for 20@ = 98 to 99
END

IF
0B4C:  samp is_dialog_active -1
THEN
    0AC8: 4@ = allocate_memory_size 260
    0BD8: samp get_dialog_caption 4@
    IF
    0C29: $NOT_USED = stristr string1 4@ string2 "Sign check" // check dialog title / caption
    THEN
        0AC8: 5@ = allocate_memory_size 512
        0BD7: samp get_dialog_text 5@
        0AC8: 6@ = allocate_memory_size 260
        0AB1: call_scm_func @get_digits_to_print param_count 2 text 5@ memory_to_store_digits_as_text 6@
        0B4B: samp set_current_dialog_editbox_text 6@
        0B47: samp close_current_dialog_with_button 1
    END
END

END

:get_digits_to_print
{
    0@ = text
    1@ = pointer to memory where digits will be stored as text
}
0C17: 31@ = strlen 0@
    for 30@ = 0 to 31@
        0085: 29@ = 0@ // copy pointer
        005A: 29@ += 30@  // add offset (as the loop progresses it becomes pointers to first-last character)
        0A8D: 28@ = read_memory 29@ size 1 virtual_protect 1 // 28@ is the ascii number representing character
        if and
        28@ >= 0x30 // '0'
        28@ <= 0x39 // '9'
        then
        0A8C: write_memory 1@ size 1 value 28@ virtual_protect 1
        1@ += 1 // move to next address
        end
    end
0A8C: write_memory 1@ size 1 value 0 virtual_protect 1 // null-termination
0AB2: ret 0



Hello!
The Cleo I would like to order is the same as this one, but at the place type /singcheck, type /sairafk
And in the dialog always type "online"
The name of the dialog is "Sair do AFK"
Buttons "OK" "Cancelar"


THX!
 

Attachments

  • ONLINE.png
    ONLINE.png
    214 KB · Views: 36

SrJA

Member
Joined
Jan 20, 2018
Messages
9
Reaction score
1
Request form.:
1.
Name of the mod (if the mod doesn't exist, you don't have to tell one):
2. Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): not
3. What do you want (the most important part, explain this carefully): An adjustable mod that change speed of all animations (run, climb, jump, aim, etc.).
4. Details (add more details to your request):
5. Need On/off key or command ?: f10 to activate, page up to make faster and page down to get slower till the normal speed
6. Which client your server use?:0.3.7
7. Give any picture or video:
8. You use SAMPFUNCS?: yep
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,103
Solutions
5
Reaction score
882
Location
Lithuania
PHP:
{$CLEO .cs}

0000: 'Parazitas || UGBASE.EU'

REPEAT
   WAIT 0
UNTIL 0AFA:  SAMP_IS_READY

WHILE TRUE
   WAIT 0

IF
0B61:  samp is_local_player_spawned
THEN
    0AC8: 0@ = allocate_memory_size 260
    0AC8: 1@ = allocate_memory_size 260
    for 20@ = 95 to 99  // chat lines
    0B75: samp get_chat_string 20@ text_to 0@ prefix_to 1@ color_to 2@ prefix_color_to 3@
    IF
    0C29: $NOT_USED = stristr string1 0@ string2 "/signcheck"
    THEN
        say "/signcheck"
        0AF8: " " -1 // add emty msg
        0AF8: " " -1 // add emty msg
        0AF8: " " -1 // add emty msg
    END
    end // end for 20@ = 98 to 99
END

IF
0B4C:  samp is_dialog_active -1
THEN
    0AC8: 4@ = allocate_memory_size 260
    0BD8: samp get_dialog_caption 4@
    IF
    0C29: $NOT_USED = stristr string1 4@ string2 "Sign check" // check dialog title / caption
    THEN
        0AC8: 5@ = allocate_memory_size 512
        0BD7: samp get_dialog_text 5@
        0AC8: 6@ = allocate_memory_size 260
        0AB1: call_scm_func @get_digits_to_print param_count 2 text 5@ memory_to_store_digits_as_text 6@
        0B4B: samp set_current_dialog_editbox_text 6@
        0B47: samp close_current_dialog_with_button 1
    END
END

END

:get_digits_to_print
{
    0@ = text
    1@ = pointer to memory where digits will be stored as text
}
0C17: 31@ = strlen 0@
    for 30@ = 0 to 31@
        0085: 29@ = 0@ // copy pointer
        005A: 29@ += 30@  // add offset (as the loop progresses it becomes pointers to first-last character)
        0A8D: 28@ = read_memory 29@ size 1 virtual_protect 1 // 28@ is the ascii number representing character
        if and
        28@ >= 0x30 // '0'
        28@ <= 0x39 // '9'
        then
        0A8C: write_memory 1@ size 1 value 28@ virtual_protect 1
        1@ += 1 // move to next address
        end
    end
0A8C: write_memory 1@ size 1 value 0 virtual_protect 1 // null-termination
0AB2: ret 0



Hello!
The Cleo I would like to order is the same as this one, but at the place type /singcheck, type /sairafk
And in the dialog always type "online"
The name of the dialog is "Sair do AFK"
Buttons "OK" "Cancelar"


THX!

Any info?
 

Sam201

Well-known member
Joined
Sep 22, 2014
Messages
233
Solutions
1
Reaction score
15
Request form.:
1.
Name of the mod (if the mod doesn't exist, you don't have to tell one):
2. Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): not
3. What do you want (the most important part, explain this carefully): An adjustable mod that change speed of all animations (run, climb, jump, aim, etc.).
4. Details (add more details to your request):
5. Need On/off key or command ?: f10 to activate, page up to make faster and page down to get slower till the normal speed
6. Which client your server use?:0.3.7
7. Give any picture or video:
8. You use SAMPFUNCS?: yep

There is one already over the Internet with an open source that you can change the actor animation speed manually using sanny builder of course
 

TrackudGTA

New member
Joined
May 28, 2018
Messages
2
Reaction score
0
There is a hacker that you can change skin on RP servers. This is effective, can you send me?
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,103
Solutions
5
Reaction score
882
Location
Lithuania
Request form.:
1.
Name of the mod (if the mod doesn't exist, you don't have to tell one):
2. Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): not
3. What do you want (the most important part, explain this carefully): An adjustable mod that change speed of all animations (run, climb, jump, aim, etc.).
4. Details (add more details to your request):
5. Need On/off key or command ?: f10 to activate, page up to make faster and page down to get slower till the normal speed
6. Which client your server use?:0.3.7
7. Give any picture or video:
8. You use SAMPFUNCS?: yep
PHP:
{$CLEO .cs}

0000:

wait 8500

while true
wait 0

if
0AB0: 121 // F10
then
    repeat
    wait 0
    until 8AB0: 121 // NOT F10 
    if
    30@ == false
    then
        30@ = true
        0AD1: "ON" 1000
    else
        30@ = false
        0AD1: "OFF" 1000
    end
end

if
30@ == true
then
    0B2B: 1@ = $PLAYER_ACTOR
    0B57: 2@ player 1@ animation_id 
    0B58: get_anim_name_to 0@v file_to 1@v by_id 2@
    0393: player $PLAYER_ACTOR perform_anim 1@v at_speed 15.0  
else
    0B2B: 1@ = $PLAYER_ACTOR
    0B57: 2@ player 1@ animation_id 
    0B58: get_anim_name_to 0@v file_to 1@v by_id 2@
    0393: player $PLAYER_ACTOR perform_anim 1@v at_speed 1.0
end

end
 

Attachments

  • Anim Speed.cs
    18 KB · Views: 17

woodship

New member
Joined
May 30, 2019
Messages
1
Reaction score
0
Good morning!
Here you can request your cleo and if i have time..., i try make it.
** Read the forum rules ! **

Request rules.:
1.
Can request maximum only X cleo!!!
2. Try your best to explain what you really want and need.
3. Write clearly and understandable
4. Copy/Paste request form.


Request form.:
1.
Name of the mod (if the mod doesn't exist, you don't have to tell one):
2. Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not):
3. What do you want (the most important part, explain this carefully):
4. Details (add more details to your request):
5. Need On/off key or command ?:
6. Which client your server use?:
7. Give any picture or video:
8. You use SAMPFUNCS?:​


Important!
All request posters must use request form!!!
[Otherwise you will be ignored
]
1. mod name rem.cs
2. i already have it but i like to modify it
3. so basically what it usually does is remove/respawn a selected car within 10 to 15 seconds. what i want is to have it remove that car in 1 second or remove multiple cars at onces since it can let you only select 1 car at a time.
4. its actually famous used as undetected hack unlike removecars.cs which was detected and bad for hacking in a stealthy way
5. it is set to /rem command and i want to change that to a button (numpad 0 if possible)
6. -
7. pic/vid no need because you can simply search "gtasa rem.cs" on google and look it up
8. Use sampfuncs? Yes i do
 

SrJA

Member
Joined
Jan 20, 2018
Messages
9
Reaction score
1
PHP:
{$CLEO .cs}

0000:

wait 8500

while true
wait 0

if
0AB0: 121 // F10
then
    repeat
    wait 0
    until 8AB0: 121 // NOT F10
    if
    30@ == false
    then
        30@ = true
        0AD1: "ON" 1000
    else
        30@ = false
        0AD1: "OFF" 1000
    end
end

if
30@ == true
then
    0B2B: 1@ = $PLAYER_ACTOR
    0B57: 2@ player 1@ animation_id
    0B58: get_anim_name_to 0@v file_to 1@v by_id 2@
    0393: player $PLAYER_ACTOR perform_anim 1@v at_speed 15.0 
else
    0B2B: 1@ = $PLAYER_ACTOR
    0B57: 2@ player 1@ animation_id
    0B58: get_anim_name_to 0@v file_to 1@v by_id 2@
    0393: player $PLAYER_ACTOR perform_anim 1@v at_speed 1.0
end

end

Hi, bro, can you edit it to get a .ini that let you edit the speed?.
 
Status
Not open for further replies.
Top