Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: Kewun on Aug 10, 2016, 07:06 PM

Title: Vehicle License Problem
Post by: Kewun on Aug 10, 2016, 07:06 PM
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
Title: Re: Vehicle License Problem
Post by: . on Aug 10, 2016, 07:26 PM
Did you mean:
if ( player.Vehicle.Model in bmodels )Instead of:
if ( player.Vehicle.Model == bmodels )
?
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 10, 2016, 07:29 PM
yeah, still not works ;c
Title: Re: Vehicle License Problem
Post by: Thijn on Aug 10, 2016, 07:53 PM
Return true then. You're only doing a return false inside the if, but no true outside it.
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 06:04 AM
k
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 06:06 AM
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;
   }
}
Title: Re: Vehicle License Problem
Post by: Thijn on Aug 11, 2016, 06:08 AM
Move it down 1 line.
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 06:11 AM
no, now i can enter any vehicle without driver license b :/
Title: Re: Vehicle License Problem
Post by: KAKAN on Aug 11, 2016, 08:39 AM
local p = ReadIniBool("stats.ini","b",player.Name);
print( p + " " + typeof p );
Try it and tell us the output of it.
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 08:42 AM
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;
}
Title: Re: Vehicle License Problem
Post by: KAKAN on Aug 11, 2016, 08:47 AM
lol man, use "in" keyword instead of ==.
That's your problem.
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 08:48 AM
i tried even with "in"
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 08:48 AM
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;
}

Title: Re: Vehicle License Problem
Post by: KAKAN on Aug 11, 2016, 08:50 AM
try this:-
function onPlayerEnteringVehicle(player, vehicle, seat)
{
  print("Callback received");
}
Check for duplicate functions too.
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 08:51 AM
yeah, it pritned to the console Callback received
no duplicates
Title: Re: Vehicle License Problem
Post by: KAKAN on Aug 11, 2016, 03:40 PM
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 );
}
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 04:55 PM
ok, lemme try
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 04:57 PM
[SCRIPT]  integer
[SCRIPT]  false
Title: Re: Vehicle License Problem
Post by: Thijn on Aug 11, 2016, 05:22 PM
Quote from: Kewun on Aug 11, 2016, 04:57 PM[SCRIPT]  integer
[SCRIPT]  false

So, there's your answer. Now go fix it yourself.
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 05:24 PM
lol wut i dont understand
Title: Re: Vehicle License Problem
Post by: Xmair on Aug 11, 2016, 05:26 PM
It means that the vehicle's model is not in "bmodels".
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 05:47 PM
there is, 205 sabre, 205 in the bmodels. i entered sabre.
Title: Re: Vehicle License Problem
Post by: Stormeus on Aug 11, 2016, 06:21 PM
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.
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 11, 2016, 07:38 PM
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 :/
Title: Re: Vehicle License Problem
Post by: Thijn on Aug 11, 2016, 08:16 PM
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.
Title: Re: Vehicle License Problem
Post by: . on Aug 11, 2016, 08:27 PM
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)
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 12, 2016, 01:44 AM
crap.. playre.. thats what happens when im sleepy. thx
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 12, 2016, 03:33 AM
with player, i can now enter vehicles even with license

aight, ill try to fix it my self.
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 12, 2016, 03:49 AM
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
Title: Re: Vehicle License Problem
Post by: KAKAN on Aug 12, 2016, 10:45 AM
Quote from: Thijn on Aug 11, 2016, 08:16 PMIts player, not playre
in that case, squirrel should throw errors :/
Title: Re: Vehicle License Problem
Post by: Kewun on Aug 12, 2016, 11:33 AM
lol yep and i didnt receive errors
Title: Re: Vehicle License Problem
Post by: Thijn on Aug 14, 2016, 09:59 AM
Quote from: KAKAN on Aug 12, 2016, 10:45 AM
Quote 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.
Title: Re: Vehicle License Problem
Post by: Mötley on Aug 14, 2016, 11:34 PM
Yea go figure you would think it would throw an error 'The index "playre" does not exist'