Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - rww

#331
Nice, works, but how to unlock: ^ = [ ]  etc...
#332
Sorry for post here , but LU forum is a litte dead (there is more scripters etc... and lu too have squirrel lang, and some testers from lu is there).

QuoteI need function for block another characters (like ł,ą,ć,ż,ę,ó etc..). My server use /changenick cmd and some players bugged account with invalid characters.

I very very thanks for help. I very need this, but idk how to do it.
#333
Quote from: rObInX on Apr 20, 2015, 01:22 AMHe talking about FBI Cheeta.

No, FBI Wash, but game files is FBI Car. FBI Cheeta is Vice Cheetah.
#334
GetVehicleNameFromModel(veh.Model)
i found small mistake

instead "freeway" is "freeay"
#335
Support / -1 car color
Apr 19, 2015, 11:31 AM
Is possible to do working color -1 like on 0.3 (choosing car colors from carcols.dat). If yes, where I must put carcols.dat?
#336
QuoteFixed the following vehicles not being represented in GetVehicleModelFromName:
Banshee
BF Injection
Bloodra (Bloodring Racer #1)
Bloodrb (Bloodring Racer #2)
Bus
Comet
Hermes
Hotrina (Hotring Racer #2)
Hotrinb (Hotring Racer #3)
Moonbeam
Phoenix
Voodoo

After update missing too:
- Fbi Car
- FBI Rancher
- Pony
#337
Quote from: stormeus on Apr 19, 2015, 12:07 AMFor bookkeeping purposes, please don't report two bugs in one thread. It makes tracking individual issues harder to deal with.

Some of those cars should already be tracked by Squirrel. Some of those cars don't even exist in VC (FBI Car is III; only the Cuban Jetmax exists in VC, what is Jetmax?). The rest will be handled accordingly.

Does the 0.0.0.0 issue occur always, often or rarely?



After update missing too:
- Fbi Car
- FBI Rancher
- Pony
#338
Quote from: S.L.C on Apr 18, 2015, 11:53 PMAre you sure you got the names right? Could you show us the code you used for testing? Or, at least the names you used to call that function.

Yes, because in FunctionHandler.cpp

case 'b':
{
if( lowername[1] == 'o' )
{
if( strlen( lowername ) >= 3 )
{
if( lowername[2] == 'b' )
res = 152; // bobcat
else if( lowername[2] == 'x' )
res = 228; // boxville
}
}
else if( lowername[1] == 'a' )
{
if( strlen( lowername ) >= 3 )
{
if( lowername[2] == 'r' )
res = 163; // barracks ol
else if( lowername[2] == 'g' )
res = 215; // baggage handler
}
}
else if( lowername[1] == 'l' )
res = 226; // blista compact
else if( lowername[1] == 'e' )
res = 229; // benson

break;
}

where is banshee in this code?

I use /v [car name] for car spawn

/v blista work but /v banshee doesn't work etc...
#339
GetVehicleModelFromName have some missings

After update missing too:
- Fbi Car
- FBI Rancher
- Pony

//============

Another bug:

function onPlayerPart(p,r)
{
print("[PART] ["+p.ID+"] [ "+p.Name+" ] IP: [ "+p.IP+" ] UID: [ "+p.UniqueID+" ]");
return 1;
}

#340
Support / Re: plugins problem
Apr 15, 2015, 10:39 PM
Quote from: Honey on Dec 21, 2014, 02:50 PMI had a similar problem, This happens due to the wrong line endings.

If you're trying to run your script in Linux then Open Notepad++ ( install it if you don't have it ) then Open the server.cfg file.Open the EDIT tab and open the EOL Conversion Sub Direct. Over there click on UNIX/OSX Format.If that doesn't work then try this ( works only for 64 bit ):

Quote from: BLAKBERD(Use the x64 module this time)

Try executing this: ldconfig /usr/local/lib
Run your server.

In case this does not work, follow these steps:
1. Open the file /etc/ld.so.conf and remove everything and add the following
Code: [Select]

include /etc/ld.so.conf.d/*.conf

(If this file does not exist, create it.)
2. Open the file /etc/ld.so.conf.d/libc.conf and remove everything and add the following:
Code: [Select]

# libc default configuration
/usr/local/lib

(If this folder and this file don't exist add them.)
3. Now execute ldconfig using root.

In case none of the above works, try downloading this zip file, extract it, open the folder LDSO and copy all the files and folders inside of it to /etc/ (Replace files if asked)
Now execute ldconfig using root
Download: https://www.sendspace.com/file/ji6oib

If none of these work, then install the 32 bit OS, since I got no other idea.

Here is the solution. At least helped me.
#341
Quote from: Drake on Apr 14, 2015, 11:39 AMLink of the plugin "sqlite04rel32.so" is dead.
Kindly reupload the plugin please.

Thank You.

You can download there:

Linux (x86) Package
#342
I know that it will not help you, but:



2x the same module
#343
Quote from: Beztone on Mar 11, 2015, 05:38 AMWell doing wrong, actually it will be like this
if( status[player.ID].offerdrugs == false )
Instead of if( offerdrugs == false ) Everywhere in the code

or

if (!status[player.ID].offerdrugs)
#344
Quote from: AdTec_224 on Feb 28, 2015, 09:46 AM
Quote from: Doom_Killer on Feb 28, 2015, 06:11 AMWell actually this can all be solved if only we get the oppertunity to get the resolution of a player, otherwise as someone suggested me that we have to manually take their resolution by force like we force them to register, thats how we can place things for them according to their resolution.

I hope developers might add that feature in official release.

I actually only thought of this the other day, it is indeed something that needs adding.

Quote from: rwwpl on Feb 28, 2015, 09:38 AMLiberty Unleashed also needs this!

Liberty Unleashed already has constants to get the screen width and height ("ScreenWidth" and "ScreenHeight").

I thought about the many colors in a single text in gui.
#345
Liberty Unleashed also needs this!