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 - Thijn

#16
Junk removed. Try to explain what you want so people can help you.
#17
Support / Re: #help channel dead
Jul 30, 2017, 01:26 PM
Ask them nicely. You're probably better off prodding Juppi when he's around.
#18
You'd be pretty stupid to use the same password for email and VC:MP... Or for any other service for that matter.

Do with it what you want, but I see no point in continuing this discussion.
#19
Quote from: NicusorN5 on Jul 24, 2017, 07:39 PM
Quote from: Cool on Jul 24, 2017, 05:36 PM
Quote from: NicusorN5 on Jul 24, 2017, 04:45 PM
Quote from: KAKAN on Jul 24, 2017, 08:53 AMUsing timers? What are you? onVehicleMove exists, if you want accuracy. And, running timers won't be laggy and "memory-consuming".
onVehicleMove is called every frame a vehicle moves. That would be worse.
For Timers, i was talking for low-end computers (most VCMP players have these). You guys should move to SAMP and MTA, since they are more popular, and bulid a computer that runs them on good framerate.
did some one asked to suggest some other good games? i love Vcmp and i dont care about new and popular games
Life for Vcmp <3
Nah, it's slowly dying... Samp has more players and it's better thatn vcmp.
For most people here SA:MP is not even close as fun as VC:MP.
#20
General Discussion / Re: [HOW] How to use SDK
Jul 24, 2017, 04:11 PM
If you don't know how to "convert to .dll" then stick with scripting in squirrel instead of making your own plugins.
#21
Quote from: vito1 on Jul 17, 2017, 06:23 PM
Quote from: Thijn on Jul 17, 2017, 05:37 PM
Quote from: vito1 on Jul 17, 2017, 09:29 AM
Quote from: EK.IceFlake on Jul 17, 2017, 08:22 AM
???
Edit/remove and close and open vc-mp browser again xD
What's your point?
This value will be reseted to default after restarting browser.
Works fine for me. I've been using my mirror since the beginning and it works fine.
#22
Skin Showroom / Re: HeLLo :D
Jul 18, 2017, 04:10 PM
Either post more information and some screenshots or this topic gets removed.
#23
Quote from: vito1 on Jul 17, 2017, 09:29 AM
Quote from: EK.IceFlake on Jul 17, 2017, 08:22 AM
???
Edit/remove and close and open vc-mp browser again xD
What's your point?
#24
Probably late 2007 or early 2008.
#25
Support / Re: I need help...
Jul 14, 2017, 05:25 PM
Move the assigning of the position and weapons to the function you're calling in the timer.
At the moment you're changing the weapon and position of the player while they're being in the spawn selection menu, then spawn them after 3 seconds.
#26
Read the error.

FreeSQL wants an instance of something ("userdata"), and you're giving it a string.

If you look at your locals, you can see the variable Clan (Which you're trying to free) contains "[vu]" at the time of the error.
Now look back to where you assign the Clan variable:
local Clan = GetSQLColumnData( QuerySQL(DB, "SELECT Clan FROM Accounts WHERE Name = '"+player.Name+"' " ), 0 );
As you can see, you assign the Clan variable to the column data, instead of the result of the actual query.
In order to fix your error, you have to assign the query to a variable, and then assign the clan variable.
Like so:
local QueryResult = QuerySQL(DB, "SELECT Clan FROM Accounts WHERE Name = '"+player.Name+"' " );
local Clan = GetSQLColumnData(QueryResult, 0 );

Then your QueryResult will hold the data for the query itself, and the Clan variable will contain the value.
Then, you can free the QueryResult and do what you want with the Clan variable:
FreeSQLQuery( QueryResult );
#27
Quote from: KAKAN on Jul 11, 2017, 05:38 PM
Quote from: Thijn on Jul 11, 2017, 05:08 PM
Quote from: KAKAN on Jul 09, 2017, 12:14 PM
Quote from: Thijn on Jul 09, 2017, 10:46 AMI doubt that example will work. The onKeyDown event will probably (I didn't test) only be called for keys that were binded.
My antivirus wouldn't mark VCMP as a "KeyLogger" if it did what you said so.
Of course it would. There's a difference between logging it and calling an event.
From my point of view, VCMP captures all the keybinds even if we have only one key to capture.
According to you, Discord( push-to-talk ) should be marked as a KeyLogger as well, but it isn't.
https://en.wikipedia.org/wiki/Keystroke_logging
KeyLogger means something else than just binding a single key.
Read my reply again. I'm not saying the client isn't listening for all keys, I'm saying the client will only send it's key statuses when it's binded to the server. Otherwise the bandwidth will be way too high.
#28
Quote from: KAKAN on Jul 09, 2017, 12:14 PM
Quote from: Thijn on Jul 09, 2017, 10:46 AMI doubt that example will work. The onKeyDown event will probably (I didn't test) only be called for keys that were binded.
My antivirus wouldn't mark VCMP as a "KeyLogger" if it did what you said so.
Of course it would. There's a difference between logging it and calling an event.
#29
Servers / Re: Elite Killerz: Estate City
Jul 11, 2017, 05:04 PM
I don't know why you would want to have that login screen fill your screen, and a scoreboard that fades in may as well not be there. You usually don't want to wait a second to view your score :/
#30
General Discussion / Re: Memory leaks
Jul 11, 2017, 05:01 PM
Quote from: KAKAN on Jul 11, 2017, 03:18 PM
Quote from: NicusorN5 on Jul 11, 2017, 02:33 PM
Quote from: Cool on Jul 04, 2017, 01:57 PMHi @Devs what about memory leaks in vcmp squirrel official plugin when you guys will fix it or its not going to happen
Wot memory leaks? Give us examples.
for( ;; ) NewTimer("abc",10000,0);
function abc(){ print("SUCKS!"); }
Your server will crash after some time.
And how would you expect them to fix an infinite loop?