Turn on several samp patches with one button in sobeit

Status
Not open for further replies.

chunny

Active member
Joined
Feb 21, 2013
Messages
41
Reaction score
0
hello is it possible to turn on / turn off several samp patches on sobeit with 1 button click?
if its possible please let me know because it would save me tons of time.

Thanks.
 

25GHz

Active member
Joined
Feb 19, 2013
Messages
167
Reaction score
0
here, look:
your patches looks like this, right?
Code:
sampPatch[] = "name"					&0 0 0x0  "" "0000"
sampPatch[] = "name2"					&0 0 0x0  "" "0000"
sampPatch[] = "name3"					&0 0 0x0  "" "0000"
ok so, &0 is were you set a key.
so if you want something like these patches to be set to the same key(example Q) just:
Code:
sampPatch[] = "name"					q 0 0x0  "" "0000"
sampPatch[] = "name2"					q 0 0x0  "" "0000"
sampPatch[] = "name3"					q 0 0x0  "" "0000"
so, now when you press "Q" the "name, name2 and name3" will be "enabled/disabled".
 
Status
Not open for further replies.
Top