I need some help.
#1

I am opening a trucking server on new years day, and i need help.

Im using that truckingmissions.inc include for my missions, but when i say /work it gives me a mission but it does not give me any checkpoints. Any help?

How do i make speedtraps so if a person is going to fast in a certain area it fines them?

How do i make toll booths that the player drives up, it opens, charges them $20 and does not close until they are out of range of the toll.

How do i make classes that can be used only by people with score of 75 or above?

How do i make classes spawn with weapons, for example a camera?

I also need suggestions.

Stuff Added:Ranks
Bank
Spawn Messages
Speedo
Missions
Truck Depots
Admin System
House System
Auto Messages
Auto Weather
Auto Restart
Dynamic Systems
/loc Commands
Stuff Being Added:Radio
CB Channel Commands
Car System


I need suggestions!
Reply
#2

No one helping?
Reply
#3

You are pretty much ready to open the server, but of course new features are nice.

Speed-Traps: I don't know how efficient it would be using OnPlayerUpdate for this, but you could get an area check of a player, if they are in-range of the speedtrap and their speed is greater then the max speed you can fine them and alert the cops. (I'm guessing that's what you want)

Toll-Booths: Simple. You need somebody to map toll booths wherever you want them and when a player is in-range of the toll booth, you could simply charge them money and then wait for them to go through the toll - when they're out of range, close it.

Limit Class To Score: You could do something like this (may need some editing):

pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
    if(classid == THE_CLASS_YOU_WANT && GetPlayerScore(playerid) < THE_MINIMUM_SCORE))
        GameTextForPlayer(playerid, "You don't have the required score!", 5000, 5);

    return 1;
}
Spawn With Weapons: When they spawn, you could check what team/class they are in and use "GivePlayerWeapon" to give them the weapon(s) you want.

I don't have any ideas at the moment, but you have my xFire.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)