Help with some freeroam commands - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Help with some freeroam commands (
/showthread.php?tid=222983)
Help with some freeroam commands -
Gotti_ - 08.02.2011
i need:
Automatic Repair - but, i dont want automatic repair on whole server, just in one area (for car sumo) if it is posibly.
Nitro - i have /nitro command but when it dissapear i have to wait few minutes to activate it again
help please
Re: Help with some freeroam commands -
alpha500delta - 08.02.2011
Use search function. There are enough scripts like this. Also you should use wiki.sa-mp.com
Anyway, for auto-repair you should use a timer, or a loop idk. Ill post the script for that later. If noone posts it. To activate nitro after its done just do the command again and you have nitro again
Re: Help with some freeroam commands -
nod32 - 08.02.2011
He dont think to type /nitro, only to press left click and u get nitro, when nitro dissapear u press left click then u got nitro again. Can u help plz about this ?
Re: Help with some freeroam commands -
Mean - 08.02.2011
For the vehicle repair:
pawn Код:
public OnGameModeInit() {
SetTimer("repair", 500, 1);
return true;
}
After that;
pawn Код:
forward repair();
public repair() {
for(new i; i < MAX_PLAYERS; i++) {
if(IsPlayerConnected(i)) {
if(IsPlayerInRangeOfPoint(i, rangehere, sumoX here, sumoY here, sumoZ here)) {
new vehicleid = GetPlayerVehicleID(i);
RepairVehicle(vehicleid);
}
}
}
return true;
}
Re: Help with some freeroam commands -
Gotti_ - 09.02.2011
vidim da si iz hrvatske pa da ne pricam engleski,
Hocu da mi auto-repair bude samo u jednoj zoni a ne na celom serveru, npr samo u san fieru, kako da ogranicim tu zonu?
a za nitro mi treba da se aktivira kad pritisnem levi klik a ne da pisem komandu :S
Re: Help with some freeroam commands -
alpha500delta - 09.02.2011
This is an English forum dude. Talk English
Re: Help with some freeroam commands -
Gotti_ - 09.02.2011
i need nitro activiting on LMB and auto-repair just in one area( ex: just in san fiero airport)
Re: Help with some freeroam commands -
alpha500delta - 09.02.2011
Use
IsPlayerInRangeOfPoint