CLEO Help Lag.cs not working on samp 0.3.7 more?

CLEO related
Status
Not open for further replies.

daster

New member
Joined
Sep 25, 2013
Messages
4
Reaction score
0
Any working Lag.cs ??? i have tried all that are on this website none work it says it's activated and all that but health stil goes down and shit anyone that can get a working lag.cs for samp 0.3.7 or is it not posible more? or like a toggle godmode something that you wont reduce health or something that makes you god for a second anything?
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,113
Solutions
5
Reaction score
878
Location
Lithuania
Work...
Activate / Deactivate whit command in server /lag.cs

Source:
Code:
{$CLEO .cs}

0000: NOP

0B34: samp register_client_command "lag.cs" to_label @lagdotcs_activate
31@ = 0

:lagdotcs
wait 0
if 
31@ == 1
then
    Actor.SetImmunities($PLAYER_ACTOR, 1, 1, 0, 0, 1)
    wait 250
    Actor.SetImmunities($PLAYER_ACTOR, 0, 0, 0, 0, 0)
end
jump @lagdotcs

:lagdotcs_activate
if
31@ == 0
then
    31@ = 1
    chatmsg "{FFFFFF}Lag.cs 0.3.7 {00FF33}ENABLED" 0
else
    31@ = 0
    chatmsg "{FFFFFF}Lag.cs 0.3.7 {FF0000}DISABLED" 0
end
SAMP.CmdRet()

Download:
http://www49.zippyshare.com/v/8QGmKPIw/file.html
 

daster

New member
Joined
Sep 25, 2013
Messages
4
Reaction score
0
Parazitas said:
Work...
Activate / Deactivate whit command in server /lag.cs

Source:
Code:
{$CLEO .cs}

0000: NOP

0B34: samp register_client_command "lag.cs" to_label @lagdotcs_activate
31@ = 0

:lagdotcs
wait 0
if 
31@ == 1
then
    Actor.SetImmunities($PLAYER_ACTOR, 1, 1, 0, 0, 1)
    wait 250
    Actor.SetImmunities($PLAYER_ACTOR, 0, 0, 0, 0, 0)
end
jump @lagdotcs

:lagdotcs_activate
if
31@ == 0
then
    31@ = 1
    chatmsg "{FFFFFF}Lag.cs 0.3.7 {00FF33}ENABLED" 0
else
    31@ = 0
    chatmsg "{FFFFFF}Lag.cs 0.3.7 {FF0000}DISABLED" 0
end
SAMP.CmdRet()

Download:
http://www49.zippyshare.com/v/8QGmKPIw/file.html

mistery said:
do u even know what lagcs does?

Yeah it makes you god for like 1 secnd so you wont lose health?
 

not490

Well-known member
Joined
Feb 8, 2014
Messages
438
Reaction score
4
daster said:
Parazitas said:
Work...
Activate / Deactivate whit command in server /lag.cs

Source:
Code:
{$CLEO .cs}

0000: NOP

0B34: samp register_client_command "lag.cs" to_label @lagdotcs_activate
31@ = 0

:lagdotcs
wait 0
if 
31@ == 1
then
    Actor.SetImmunities($PLAYER_ACTOR, 1, 1, 0, 0, 1)
    wait 250
    Actor.SetImmunities($PLAYER_ACTOR, 0, 0, 0, 0, 0)
end
jump @lagdotcs

:lagdotcs_activate
if
31@ == 0
then
    31@ = 1
    chatmsg "{FFFFFF}Lag.cs 0.3.7 {00FF33}ENABLED" 0
else
    31@ = 0
    chatmsg "{FFFFFF}Lag.cs 0.3.7 {FF0000}DISABLED" 0
end
SAMP.CmdRet()

Download:
http://www49.zippyshare.com/v/8QGmKPIw/file.html

mistery said:
do u even know what lagcs does?

Yeah it makes you god for like 1 secnd so you wont lose health?

Thats actually not so smart lag.cs... you can't even call it lag.cs. 1sec off 1 sec on. Nah. You need the one i sent you earlier. Because this 1sec system will make you invulnerable and will be saved in logs. And if admin runs anti cheat test on, you are screwed.
 

Listname

New member
Joined
Mar 28, 2016
Messages
2
Reaction score
0
Parazitas said:
Work...
Activate / Deactivate whit command in server /lag.cs

Source:
Code:
{$CLEO .cs}

0000: NOP

0B34: samp register_client_command "lag.cs" to_label @lagdotcs_activate
31@ = 0

:lagdotcs
wait 0
if 
31@ == 1
then
    Actor.SetImmunities($PLAYER_ACTOR, 1, 1, 0, 0, 1)
    wait 250
    Actor.SetImmunities($PLAYER_ACTOR, 0, 0, 0, 0, 0)
end
jump @lagdotcs

:lagdotcs_activate
if
31@ == 0
then
    31@ = 1
    chatmsg "{FFFFFF}Lag.cs 0.3.7 {00FF33}ENABLED" 0
else
    31@ = 0
    chatmsg "{FFFFFF}Lag.cs 0.3.7 {FF0000}DISABLED" 0
end
SAMP.CmdRet()

Download:
http://www49.zippyshare.com/v/8QGmKPIw/file.html

I love you :D

 
Status
Not open for further replies.
Top