nikita.fichtner Posted June 9, 2022 Posted June 9, 2022 (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 June 9, 2022 by nikita.fichtner
Kopra Posted June 10, 2022 Posted June 10, 2022 (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 June 10, 2022 by Kopra
hash_ Posted June 11, 2022 Posted June 11, 2022 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now