🍕Pizza Delivery

You can find all the necessary information and developer content for Pizza Delivery here


  • ["name"]: It is the label that will appear in menus or notifications.

  • The [‘menu’] variable consists of things related to the location from which the job is to be retrieved

    • ["job_menu"]: @vector3 Accepts. The menu access location of the job.

    • ["interaction_distance"]: @float Accepts. The player distance controlled to access the menu.

  • ["CameraOffsets"]: They are variables of the camera that occur when delivering pizza.

  • ["delivery_reward"]: It gives a fee between $10 and $20. You can keep it fixed.


🕙Timer / Delivery Time

There is only one set timer for deliveries. You can understand it by reading the following variables.

  • ["delivery_time"]: @number Time to be entered for delivery. Minutes * 60 * 1000.

  • ["extra_time"]: @number Extra time to be added after the specified delivery time has expired. Minutes * 60 * 1000

  • ["deducted_per_min"]: @number If extra time is activated, a fee will be deducted from the reward for each ‘One’ minute spent.


🚗Delivery Car / Car Settings

Contains the details of the delivery vehicle. You can enter spawn location and vehicle type.

  • ["model"]: @string You can enter the vehicle model here. Be careful to enter a valid vehicle.

  • ["spawnCoords"]: @vector4 Accepts. It is the position where the vehicle will emerge. The direction your character is facing is the direction the front of your vehicle will face.


🪜Prop / Attach / Animations

Some changes for the pizza prop that emerges from the courier vehicle are as follows.

  • ["model"]: @string It is the model of the pizza prop. You can examine the models from PlebMaster

  • ["attach_settings"]: The settings for attaching the pizza model to the user.

    • ["bone"]: @number Select the appropriate one of the bonnets that the characters have. You can see the bones and their names in AltV - Ped Bones

    • ["coords"]: @vector3 It is the offset to be added to the 0.0 position of the character.

    • ["rotation"]: @vector3 The location, direction and heading settings of the pizza model when attaching it to the character.

  • ["delivery_animation"]: Animation that the character will enter during delivery

    • ["animName"]: @string Animation name.

    • ["animDict"]: @string Animation directory name.

    • ["duration"]: @number You can write here how many seconds the animation will last. In ms. Default 3000 => 3 Seconds

    • ["loop"]: @boolean If True is set, the animation will be done infinitely.


📍Add Pizzerias / Delivery Coords

Follow the guidance below to enter pizza delivery restaurants and pizza delivery locations.

📍Add Pizzeria

  • ["pizzerias"] ⇒ ["coords"] Enter a location @vector3 here.

  • [index] = vec3(0.0, 0.0, 0.0):

    • [index]: You should add +1 to the total number of pizzerias locations found


📍Add Delivery Location

  • ["delivery_coords"] ⇒ ["coords"]: Enter a location @vector3 here.

  • [index] = vec3(0.0, 0.0, 0.0):

    • [index]: You should add +1 to the total number of pizzerias locations found

Last updated