local bmodels = [
175,
130,
131,
132,
134,
135,
139,
140,
141,
142,
145,
147,
148,
149,
150,
151,
152,
154,
156,
159,
164,
168,
172,
174,
175,
187,
188,
196,
197,
200,
201,
204,
205,
206,
207,
209,
210,
211,
216,
219,
220,
221,
222,
224,
225,
226,
230,
232,
233,
234,
235,
236,
]
onplayerentering:
function onPlayerEnteringVehicle(player, vehicle, seat)
{
if ( player.Vehicle.Model == bmodels )
{
if ( ReadIniBool("stats.ini","b",player.Name)) return true;
else {
MessagePlayer("[#ff0000]You need driver license B, sorry.",player)
return false;
}
}
}
i cant enter the vehicles, even if there is the bool true in stats.ini "b"
no errors prints in the console
Did you mean:
if ( player.Vehicle.Model in bmodels )
Instead of:
if ( player.Vehicle.Model == bmodels )
?
yeah, still not works ;c
Return true then. You're only doing a return false inside the if, but no true outside it.
k
still not works
function onPlayerEnteringVehicle(player, vehicle, seat)
{
if ( player.Vehicle.Model in bmodels )
{
if ( ReadIniBool("stats.ini","b",player.Name)) return true;
else {
MessagePlayer("[#ff0000]You need driver license B, sorry.",player)
return false;
}
return true;
}
}
Move it down 1 line.
no, now i can enter any vehicle without driver license b :/
local p = ReadIniBool("stats.ini","b",player.Name);
print( p + " " + typeof p );
Try it and tell us the output of it.
there isnt any prints in the console
function onPlayerEnteringVehicle(player, vehicle, seat)
{
if ( player.Vehicle.Model == bmodels )
{
if ( ReadIniBool("stats.ini","b",player.Name)) {
local p = ReadIniBool("stats.ini","b",player.Name);
print( p + " " + typeof p );
return true;
}
else {
local p = ReadIniBool("stats.ini","b",player.Name);
print( p + " " + typeof p );
MessagePlayer("[#ff0000]You need driver license B, sorry.",player)
return false;
}
}
return true;
}
lol man, use "in" keyword instead of ==.
That's your problem.
i tried even with "in"
function onPlayerEnteringVehicle(player, vehicle, seat)
{
if ( player.Vehicle.Model in bmodels )
{
if ( ReadIniBool("stats.ini","b",player.Name)) {
local p = ReadIniBool("stats.ini","b",player.Name);
print( p + " " + typeof p );
return true;
}
else {
local p = ReadIniBool("stats.ini","b",player.Name);
print( p + " " + typeof p );
MessagePlayer("[#ff0000]You need driver license B, sorry.",player)
return false;
}
}
return true;
}
try this:-
function onPlayerEnteringVehicle(player, vehicle, seat)
{
print("Callback received");
}
Check for duplicate functions too.
yeah, it pritned to the console Callback received
no duplicates
Quote from: Kewun on Aug 11, 2016, 08:51 AMyeah, it pritned to the console Callback received
no duplicates
try this:-
function onPlayerEnteringVehicle(player, vehicle, seat)
{
print( typeof player.Vehicle.Model );
print( player.Vehicle.Model in bmodels );
}
ok, lemme try
[SCRIPT] integer
[SCRIPT] false
Quote from: Kewun on Aug 11, 2016, 04:57 PM[SCRIPT] integer
[SCRIPT] false
So, there's your answer. Now go fix it yourself.
lol wut i dont understand
It means that the vehicle's model is not in "bmodels".
there is, 205 sabre, 205 in the bmodels. i entered sabre.
You can't do in lookups on an array, it can only check if an index is in a table.
You need to do bmodels.find(player.Vehicle.Model) != null instead. Note that this is a lazy solution and can be optimized.
now i cant enter any vehicle even w/ license.. :/
function onPlayerEnteringVehicle(player, vehicle, seat)
{
if ( bmodels.find(playre.Vehicle.Model) != null )
{
if ( ReadIniBool ( "stats.ini","b",player.Name)) return true;
else return false;
}
return true;
}
correct this for me :/
Its player, not playre
Also, if you play to actually develop a server you definitely need to learn from your mistake. Try to debug it yourself.
If you expect an if to succeed and it doesn't, try printing your statement information. It might not be what you think it contains.
Quote from: Thijn on Aug 11, 2016, 08:16 PMTry to debug it yourself.
(https://forum.vc-mp.org/proxy.php?request=http%3A%2F%2Fchaoticsignal.com%2Fimage%2Foriginal%2FOH%2520NO%2520YOU%2520DI%2520INT%2520MICHELLE%2520OBAMA.jpg&hash=8ac377935ce622810536abca44bc0d449f9c026f)
crap.. playre.. thats what happens when im sleepy. thx
with player, i can now enter vehicles even with license
aight, ill try to fix it my self.
hell yeah fixed it my self finally
function onPlayerEnteringVehicle(player, vehicle, seat)
{
local bmodels = [175,130,131,132,134,135,139,140,141,142,145,147,148,149,150,151,152,154,156,159,164,168,172,174,175,187,188,196,197,200,201,204,205,206,207,209,210,211,216,219,220,221,222,224,225,226,230,232,233,234,235,236];
if ( bmodels.find(player.Vehicle.Model) )
{
if ( ReadIniBool ( "stats.ini","b",player.Name)) {
MessagePlayer("[#ffffff]License Check: True",player)
return true;
}
else {
MessagePlayer("[#ffffff]License Check: False",player)
return false;
}
}
}
thx all especially thijn :v
Quote from: Thijn on Aug 11, 2016, 08:16 PMIts player, not playre
in that case, squirrel should throw errors :/
lol yep and i didnt receive errors
Quote from: KAKAN on Aug 12, 2016, 10:45 AMQuote from: Thijn on Aug 11, 2016, 08:16 PMIts player, not playre
in that case, squirrel should throw errors :/
People never post those, so I just point out the obvious.
Yea go figure you would think it would throw an error 'The index "playre" does not exist'