[CLOSED] Accepting request

Status
Not open for further replies.

hacker127

Active member
Joined
Jul 17, 2019
Messages
44
Reaction score
2
Hi, I need to rework this to 0.3DL. If it's possible.
 

Attachments

  • Damage Informer.cs
    3.8 KB · Views: 8

yusuq

Member
Joined
Aug 28, 2018
Messages
6
Reaction score
0
Request form.:
1.
Name of the mod (if the mod doesn't exist, you don't have to tell one): dont fall brawl
2. Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): no
3. What do you want (the most important part, explain this carefully): brawl do not fall to the ground, we need to stay constantly.
4. Details (add more details to your request):no
5. Need On/off key or command ?: f5
6. Which client your server use?: SAMP 0.3DL
7. Give any picture or video:
8. You use SAMPFUNCS?: no
 

AidanGucci

Active member
Joined
Sep 19, 2017
Messages
98
Reaction score
8
1. Name of the mod (if the mod doesn't exist, you don't have to tell one): Auto dialog for matrun verification
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): Make the process automatic
4. Details (add more details to your request): N/A
5. Need On/off key or command ?: N/A
6. Which client your server use?: SAMP 0.3.7
7. Give any picture or video: Above
8. You use SAMPFUNCS?: Yes
 

Attachments

  • sa-mp-016.png
    sa-mp-016.png
    47.3 KB · Views: 42

J3RREN

Member
Joined
Oct 24, 2019
Messages
9
Reaction score
1
Location
Dubai
Hi there!
I play on a server samp 0.3.7 called Horizon Gaming. The server IP is samp.hzgaming.net:7777
So the problem with the modification you made is that the mod doesn't automatically type "/signcheck" for some reason. On this page another guy has the same problem, but he sends you a direct message and I think you gave him the answer and fix. http://ugbase.eu/index.php?threads/accepting-request.20630/page-10 . Please send me the fix in a .cs file.
 

blvck0v

Active member
Joined
Feb 23, 2019
Messages
97
Reaction score
51
Location
ugbase.eu
1. Name of the mod (if the mod doesn't exist, you don't have to tell one): /dl distance but in .cleo format not .asi, etc
2.
Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): In a s0b mod, but it was .asi
3.
What do you want (the most important part, explain this carefully): When i use a command "/dldist" to enable/disable /dl distance so i can see it from far away
4.
Details (add more details to your request):
5. Need On/off key or command ?: /dldist
6. Which client your server use?: SAMP 0.3.7
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,112
Solutions
5
Reaction score
878
Location
Lithuania
1. Name of the mod (if the mod doesn't exist, you don't have to tell one): Auto dialog for matrun verification
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): Make the process automatic
4. Details (add more details to your request): N/A
5. Need On/off key or command ?: N/A
6. Which client your server use?: SAMP 0.3.7
7. Give any picture or video: Above
8. You use SAMPFUNCS?: Yes
PHP:
{$CLEO .cs}

0000:

wait 8500

while true
wait 0

if
0B4C:  samp is_dialog_active -1
then
    0AC8: 0@ = allocate_memory_size 1024
    0BD8: samp get_dialog_caption 0@
    if
    0C29: $NOT_USED = stristr string1 0@ string2 "Lawless Roleplay"
    then
        0AC8: 1@ = allocate_memory_size 1024
        0BD7: samp get_dialog_text 1@
        0AB1: @CollectAllDigits 1 stringPointer 1@
        0B4B: samp set_current_dialog_editbox_text 1@
        0209: 2@ = random_int_in_ranges 1397 2156
        wait 2@
        0B47: samp close_current_dialog_with_button 1
    end
end

end


:CollectAllDigits
{
    0AB1: @CollectAllDigits 1 stringPointer 1@
    SelftReturn: 1@ - Digits
}
0C17: 31@ = strlen 0@
31@ -= 1
0085: 28@ = 0@ 
005A: 28@ += 31@ 
0085: 27@ = 0@ 
for 30@ = 0@ to 28@
0A8D: 29@ = read_memory 30@ size 1 virtual_protect 1
    if and // if is equal or higher than "0" in ascii, and if is equal or lower than "9" in ascii (http://www.asciitable.com/index/asciifull.gif)
    0029:   29@ >= 48
    002B:   57 >= 29@
    then
        0A8C: write_memory 27@ size 1 value 29@ virtual_protect 1 
        27@++ //27@ increases only if it's a digit
    else 
        // do nothing... 
    end       
end
0A8C: write_memory 27@ size 1 value 0 virtual_protect 1 
0AB2: ret 0


Hi there!
I play on a server samp 0.3.7 called Horizon Gaming. The server IP is samp.hzgaming.net:7777
So the problem with the modification you made is that the mod doesn't automatically type "/signcheck" for some reason. On this page another guy has the same problem, but he sends you a direct message and I think you gave him the answer and fix. http://ugbase.eu/index.php?threads/accepting-request.20630/page-10 . Please send me the fix in a .cs file.

PHP:
{$CLEO .cs}

0000:

wait 8500

while true
wait 0

if
0B4C:  samp is_dialog_active -1
then
    0AC8: 0@ = allocate_memory_size 1024
    0BD8: samp get_dialog_caption 0@
    if
    0C29: $NOT_USED = stristr string1 0@ string2 "Sign check"
    then
        0AC8: 1@ = allocate_memory_size 1024
        0BD7: samp get_dialog_text 1@
        0AB1: @CollectAllDigits 1 stringPointer 1@
        0B4B: samp set_current_dialog_editbox_text 1@
        0209: 2@ = random_int_in_ranges 1397 2156
        wait 2@
        0B47: samp close_current_dialog_with_button 1
    end
end

end


:CollectAllDigits
{
    0AB1: @CollectAllDigits 1 stringPointer 1@
    SelftReturn: 1@ - Digits
}
0C17: 31@ = strlen 0@
31@ -= 1
0085: 28@ = 0@ 
005A: 28@ += 31@ 
0085: 27@ = 0@ 
for 30@ = 0@ to 28@
0A8D: 29@ = read_memory 30@ size 1 virtual_protect 1
    if and // if is equal or higher than "0" in ascii, and if is equal or lower than "9" in ascii (http://www.asciitable.com/index/asciifull.gif)
    0029:   29@ >= 48
    002B:   57 >= 29@
    then
        0A8C: write_memory 27@ size 1 value 29@ virtual_protect 1 
        27@++ //27@ increases only if it's a digit
    else 
        // do nothing... 
    end       
end
0A8C: write_memory 27@ size 1 value 0 virtual_protect 1 
0AB2: ret 0
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,112
Solutions
5
Reaction score
878
Location
Lithuania
Request form.:
1.
Name of the mod (if the mod doesn't exist, you don't have to tell one): dont fall brawl
2. Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): no
3. What do you want (the most important part, explain this carefully): brawl do not fall to the ground, we need to stay constantly.
4. Details (add more details to your request):no
5. Need On/off key or command ?: f5
6. Which client your server use?: SAMP 0.3DL
7. Give any picture or video:
8. You use SAMPFUNCS?: no
You mean bike ?
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,112
Solutions
5
Reaction score
878
Location
Lithuania
Can you make nospread.cs for sa-mp-0.3.DL-R1?
PHP:
Example: 0AB1: @NO_SPREAD 2 WEAPON_ID 24 SPREAD_VALUE 2.0

:NO_SPREAD
0@ += 36
0@ *= 112
0@ += 13150960
0A8C: write_memory 0@ size 4 value 1@ virtual_protect 0
RET 0
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,112
Solutions
5
Reaction score
878
Location
Lithuania
@Parazitas

Hey, cant you just fix it? It doesn't type /signcheck in chat. That's the only thing you need to change and it doesn't show how we do that in the video.

Big thanks if possible for you to fix.

-_-

PHP:
{$CLEO .cs}

0000: 'Parazitas'

REPEAT
   WAIT 0
UNTIL 0AFA:  SAMP_IS_READY

WHILE TRUE
   WAIT 0
  
IF
0B61:  samp is_local_player_spawned
THEN
    0AC8: 1@ = allocate_memory_size 1024
    0AC8: 2@ = allocate_memory_size 1024
    FOR 0@ = 97 TO 99
        0B75: samp get_chat_string 0@ text_to 1@ prefix_to 2@ color_to 3@ prefix_color_to 4@
        IF
        0C29: $NOT_USED = stristr string1 1@ string2 "/signcheck"
        THEN
            say "/signcheck"
            0AF8: samp add_message_to_chat "" color -1
            0AF8: samp add_message_to_chat "" color -1
            0AF8: samp add_message_to_chat "" color -1
            0AF8: samp add_message_to_chat "" color -1
        END
    END
END
  
END
 

J3RREN

Member
Joined
Oct 24, 2019
Messages
9
Reaction score
1
Location
Dubai
-_-

PHP:
{$CLEO .cs}

0000: 'Parazitas'

REPEAT
   WAIT 0
UNTIL 0AFA:  SAMP_IS_READY

WHILE TRUE
   WAIT 0
 
IF
0B61:  samp is_local_player_spawned
THEN
    0AC8: 1@ = allocate_memory_size 1024
    0AC8: 2@ = allocate_memory_size 1024
    FOR 0@ = 97 TO 99
        0B75: samp get_chat_string 0@ text_to 1@ prefix_to 2@ color_to 3@ prefix_color_to 4@
        IF
        0C29: $NOT_USED = stristr string1 1@ string2 "/signcheck"
        THEN
            say "/signcheck"
            0AF8: samp add_message_to_chat "" color -1
            0AF8: samp add_message_to_chat "" color -1
            0AF8: samp add_message_to_chat "" color -1
            0AF8: samp add_message_to_chat "" color -1
        END
    END
END
 
END

@Parazitas Wait so is this the complete mod or do I add this on in my cleo folder with the AutoSigncheck? If it is the complete version, please make it into a .cs file pls.

Thanks again bro!
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,112
Solutions
5
Reaction score
878
Location
Lithuania
Which one do I use?
You only can use them from Monday to Friday. On weekends its not working because you have to drink on weekend not sit with your pc and do things what you don't understand a shit of it.
 
Last edited:

Hamas

New member
Joined
Oct 26, 2019
Messages
4
Reaction score
0
Location
Norway
. Name of the mod (if the mod doesn't exist, you don't have to tell one): Anti esc
2. Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): sarg.lt
3. What do you want (the most important part, explain this carefully): You know
4. Details (add more details to your request):
5. Need On/off key or command ?: Press "U"
6. Which client your server use?: 0.3.7
7. Give any picture or video:
8. You use SAMPFUNCS?: YEas
 
Status
Not open for further replies.
Top