Jump to content

Recommended Posts

Posted (edited)
let waffenladen1 = mp.blips.new(78, new mp.Vector3(1198.025757, -471.814178, 65.670250),
    {
        name: 'Waffenladen',
        color: 11,
        shortRange: true,
});
 
It works Serverside but not Clientside.
Can someone pls help :)
Edited by nikita.fichtner
Posted (edited)

Blips - RAGE Multiplayer Wiki

// Without options
const FirstWay = mp.blips.new(11, mp.players.local.position);
 
// With options, all options are optional
const SecondWay = mp.blips.new(11, mp.players.local.position, {
    name: 'Your Blip',
    color: 1,
    shortRange: true,
    scale: 0.7,
    alpha: 255,
    dimension: mp.players.local.dimension,
});
Edited by Kopra
Posted

use it exactly the same you're using it server-side but keep in mind when you're using it client side it will only be visible for the player you created it for e.g

 

if you have something like 

OnPlayerConnect => Triggers a Client Side Event in which it has mp.new.blips(etc,etc)

this will create a blip only that player who connected would see.

 

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...