Small & short questions

NewbieWannaBE

Active member
Joined
Jul 3, 2013
Messages
182
Reaction score
0
Re: NOP ShowTextDraw...

Hey i have a simple REQ is it possible to make NOP ShowTextDraw only in one part of the screen?

I think no because it applies for everything related to that option
 
Joined
Feb 18, 2005
Messages
2,963
Reaction score
267
Re: NOP ShowTextDraw...

Hey i have a simple REQ is it possible to make NOP ShowTextDraw only in one part of the screen?

You can find it in cheat engine and edit the text or whatever to nothing :hm: :hm::hm:
 

Monstercat

Well-known member
Joined
Feb 26, 2013
Messages
281
Reaction score
5
Re: NOP ShowTextDraw...

[quote author="Monstercat"]Hey i have a simple REQ is it possible to make NOP ShowTextDraw only in one part of the screen?

You can find it in cheat engine and edit the text or whatever to nothing :hm: :hm::hm: [/quote]

Ok but that is not permanet or?

Is there a way to make it permanent?
 
Joined
Feb 18, 2005
Messages
2,963
Reaction score
267
Re: NOP ShowTextDraw...

[quote author="springfield"][quote author="Monstercat"]Hey i have a simple REQ is it possible to make NOP ShowTextDraw only in one part of the screen?

You can find it in cheat engine and edit the text or whatever to nothing :hm: :hm::hm: [/quote]

Ok but that is not permanet or?

Is there a way to make it permanent?[/quote]

Maybe, i don't know so much about pointers and all, 0x688 may know something about this things.
 

Monstercat

Well-known member
Joined
Feb 26, 2013
Messages
281
Reaction score
5
Hey how i can set a value with a .ini

0A8C: write_memory 29@ size 4 value 25.0 virtual_protect 0

I want to set the value 25.0 with a ini.
 
Joined
Feb 18, 2005
Messages
2,963
Reaction score
267
0AF0: 30@ = get_int_from_ini_file "CLEOTEXT.INI" section "VALUE" key "V" // to read the value from the .ini.
then
0A8C: write_memory 29@ size 4 value 30@ virtual_protect 0


Create a .ini you want and in it add your section and key.

[TEXT]
VALUE= 25
 

bigben07

Active member
Joined
Nov 10, 2013
Messages
140
Reaction score
0
Would it be possible to create a cleo that when you enter a certain coordinate, it will enter /getmats for you?

I could combine this with the new opcode exe carrec.cs and automatically run mats.
 

zaki19

Well-known member
Joined
Feb 27, 2013
Messages
393
Reaction score
0
can yu make a cleo that if i enable it it send a message every 11 second the mesage will look like
samp say message : /sellgun (my id) mp5
so it need o get my id thanks inadvance

and can yopu make a cleo that when i activate it check my hp if it is 100 it automaticly reset it to 50 thanks again
 

divino

Active member
Joined
Oct 29, 2013
Messages
68
Reaction score
0
i want to create a hack hat give gun to someone and he will get banned
 
Joined
Feb 18, 2005
Messages
2,963
Reaction score
267
can yu make a cleo that if i enable it it send a ssage every 11 second the mesage will look like
samp say message : /sellgun (my id) mp5
so it need o get my id thanks inadvance


:SENDMP5
wait 0
if and
0ab0: 49 // your key here
0256: $PLAYER_ACTOR
jf @SENDMP5

:LOOP
if
8ab0: key_pressed 50 // deactivation key
jf @SENDMP5
0B2B: 1@ = get_player_id_by_actor_handle $PLAYER_ACTOR
wait 11000 // 11 seconds
0AF9: "/sellgun %d mp5" 1@
jump @LOOP
 
Joined
Feb 18, 2005
Messages
2,963
Reaction score
267
and can yopu make a cleo that when i activate it check my hp if it is 100 it automaticly reset it to 50 thanks again

:HP
wait 0
if
0ab0: 49 // act key.
jf @HP

:LOOP
if
8ab0: 50 // deactivation key
jf @HP
0226: 1@ = actor $PLAYER_ACTOR health
if
1@ == 100
jf @LOOP
0223: set_actor $PLAYER_ACTOR health_to 50
jump @LOOP

and for me :D :D:D

Use search: <!-- l topic3876.html?hilit=give%20a%20weapon%20to#p21143<!-- l
 

divino

Active member
Joined
Oct 29, 2013
Messages
68
Reaction score
0
how it work what i press im noob :) :):) i have server that have /givegun command but for admin only is this work?
i need to near player?
 
Joined
Feb 18, 2005
Messages
2,963
Reaction score
267
how it work what i press im noob :) :):) i have server that have /givegun command but for admin only is this work?
i need to near player?

If that command is not available for players it won't work. Script just spawns a gun and then very fast gives it to the nearest player using the command /givegun player id.
 

divino

Active member
Joined
Oct 29, 2013
Messages
68
Reaction score
0
[quote author="divino"]how it work what i press im noob :) :):) i have server that have /givegun command but for admin only is this work?
i need to near player?

If that command is not available for players it won't work. Script just spawns a gun and then very fast gives it to the nearest player using the command /givegun player id.[/quote]
i need to aim at him and press what to give him?
 

zaki19

Well-known member
Joined
Feb 27, 2013
Messages
393
Reaction score
0
[quote author="zaki19"]
and can yopu make a cleo that when i activate it check my hp if it is 100 it automaticly reset it to 50 thanks again

:HP
wait 0
if
0ab0: 49 // act key.
jf @HP

:LOOP
if
8ab0: 50 // deactivation key
jf @HP
0226: 1@ = actor $PLAYER_ACTOR health
if
1@ == 100
jf @LOOP
0223: set_actor $PLAYER_ACTOR health_to 50
jump @LOOP

[/quote]

IT crash my game when i hit the act key my game freez can you fix it ??
 

NewbieWannaBE

Active member
Joined
Jul 3, 2013
Messages
182
Reaction score
0
Why in some servers some specific cmds are not working if you are placed inside a car or a bike, and you have to get down ? Is it possible to skip it?
 
Top