[1000 Scripting Discussion Page!] Is there any rent car system?
#1

I cant find one, i tryed to search everywhere :S All i found was vehicle ownership etc...
Reply
#2

If you haven't found any then ask in script request thread.
Reply
#3

Quote:
Originally Posted by Don Correlli
If you haven't found any then ask in script request thread.
I dont want to be idiot or anything, but no-one wont make any so complicated scripts there...
Reply
#4

Let me tell you, this ain't the 1000th post if I know what you mean.

http://forum.sa-mp.com/index.php?topic=94387.0

WeeDarr

Edit:
Quote:
Originally Posted by Spatman
Quote:
Originally Posted by Don Correlli
If you haven't found any then ask in script request thread.
I dont want to be idiot or anything, but no-one wont make any so complicated scripts there...
Well go look in the showroom again. Then look again.
Reply
#5

Quote:
Originally Posted by WeeDarr
Let me tell you, this ain't the 1000th post if I know what you mean.

http://forum.sa-mp.com/index.php?topic=94387.0

WeeDarr

Edit:
Quote:
Originally Posted by Spatman
Quote:
Originally Posted by Don Correlli
If you haven't found any then ask in script request thread.
I dont want to be idiot or anything, but no-one wont make any so complicated scripts there...
Well go look in the showroom again. Then look again.
Yea i mean topic not post

Ill try again to search *sigh* i searched like 1hour, didnt find nothing...
Reply
#6

No, it's not. It's the 1000'th page.
And search. There's a system here where you can admin buy all the cars and set them rentable.. just remove the text that says you own them.
Reply
#7

I can help you get started, but you will have to edit/add other stuff yourself:

pawn Код:
// On Top:
new MyVehicle;

// OnGameModeInit
MyVehicle = CreateVehicle(451, 0, 0, 0, 0, 0, 0, 1000); // change the coordinates to your own

// OnPlayerStateChange
public OnPlayerStateChange(playerid, newstate, oldstate)
{
  if(newstate == PLAYER_STATE_DRIVER && GetPlayerVehicleID(playerid) == MyVehicle) // check if the newstate is driver and the vehicleid is "MyVehicle"
  {
    SendClientMessage(playerid, 0xFFFF00, "Do a rent system here!"); // replace this with whatever you want todo when they enter "MyVehicle"
    return 1;
  }
  return 1;
}
Hope this will get you started
Reply
#8

Quote:
Originally Posted by Sneaky.
I can help you get started, but you will have to edit/add other stuff yourself:

pawn Код:
// On Top:
new MyVehicle;

// OnGameModeInit
MyVehicle = CreateVehicle(451, 0, 0, 0, 0, 0, 0, 1000); // change the coordinates to your own

// OnPlayerStateChange
public OnPlayerStateChange(playerid, newstate, oldstate)
{
  if(newstate == PLAYER_STATE_DRIVER && GetPlayerVehicleID(playerid) == MyVehicle) // check if the newstate is driver and the vehicleid is "MyVehicle"
  {
    SendClientMessage(playerid, 0xFFFF00, "Do a rent system here!"); // replace this with whatever you want todo when they enter "MyVehicle"
    return 1;
  }
  return 1;
}
Hope this will get you started
Would that work for several vehicles, or only one, with the name MyVehicle?
Reply
#9

Quote:
Originally Posted by Anarkien
No, it's not. It's the 1000'th page.
And search. There's a system here where you can admin buy all the cars and set them rentable.. just remove the text that says you own them.

What is this then? It was 999 before i made the topic..
Reply
#10

Quote:
Originally Posted by Spatman
Quote:
Originally Posted by Anarkien
No, it's not. It's the 1000'th page.
And search. There's a system here where you can admin buy all the cars and set them rentable.. just remove the text that says you own them.

What is this then? It was 999 before i made the topic..
Please read what I wrote, for Christs sake. I said "It's the 1000'th page", just like your image says.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)