Forum: General
27/10/2019, 01:47 PM
|
Replies: 1,037
Views: 283,778
Re: Is it still worth it?
My two cents, aimed towards Kalcor: Open source the mod. Allow us to move beyond Pawn. It's already being done in the form of SAMPGDK and SampSharp, allowing for C++ and C# development respectively....
|
Forum: Scripting Help
10/10/2018, 02:04 PM
|
Replies: 5
Views: 826
|
Forum: Server Support
10/10/2018, 02:01 PM
|
Replies: 3
Views: 393
Re: Question?
Using either WAMP or XAMPP should not make a difference. All they do is offer a MySQL server that you can connect to. Which begs the question, why not just install MySQL server using the official...
|
Forum: Server Support
09/10/2018, 03:58 PM
|
Replies: 6
Views: 470
Re: MYSQL Help
Those tables need primary keys, or else the editor (looks like you're using PHPMyAdmin) will not be able to know what row to update.
|
Forum: Scripting Help
14/09/2018, 04:04 PM
|
Replies: 5
Views: 421
Re: Little help with Pawn.CMD
Have you verified the callback is being called at all? Check that out first by placing a print() call above the first if statement.
|
Forum: Scripting Help
12/09/2018, 09:30 AM
|
Replies: 5
Views: 407
Re: New to scripting
If you want to use a solid framework with a modern language, use SampSharp (http://alpha.sampsharp.timpotze.nl/). It allows you to use .NET Core and C# to build your gamemode. The framework has good...
|
Forum: Scripting Help
10/09/2018, 12:37 PM
|
Replies: 4
Views: 441
Re: ABS Braking System Script help
If you don't want to "use velocity", then it will not be possible to script it as you "explained". What the other user meant, is that you will need to create a callback for when the brake key is...
|
Forum: Server Support
10/09/2018, 12:32 PM
|
Replies: 21
Views: 1,725
Re: Fix my brains please - Account passwords
Probably means they are either pure shit and don't hash your password at all, in which case you should leave their server because they obviously don't care about security at all.
Other scenario is...
|
Forum: Server Support
10/09/2018, 12:27 PM
|
Replies: 5
Views: 641
Re: Windows vps
Soyoustart is a company run by OVH which offers game servers specifically. They are ddos protected and have a anti-ddos firewall rule specifically for SA:MP. Take a look:...
|
Forum: Scripting Help
04/07/2018, 09:48 AM
|
Replies: 9
Views: 528
|
Forum: Server Support
03/07/2018, 07:40 AM
|
Replies: 4
Views: 607
Re: I think it's right place to post it.
To run a gamemode which is based on MySQL, you need to do roughly the following:
- Put your SA:MP server and the gamemode files somewhere on your disk.
- Install the MySQL server and make sure that...
|
Forum: Scripting Help
19/06/2018, 08:52 AM
|
Replies: 8
Views: 445
Re: Help me!
Fix what? What's the issue? You are just showing us a random screenshot without any information.
|
Forum: Server Support
12/06/2018, 01:40 PM
|
Replies: 5
Views: 713
|
Forum: Scripting Help
04/06/2018, 03:24 PM
|
Replies: 8
Views: 442
Re: my acc won't save on the database.
Check your INSERT statements. If you do not allow NULL values into your new column, then the INSERT of the account will fail during registration if you do not add the new column to your existing...
|
Forum: Scripting Help
04/06/2018, 03:21 PM
|
Replies: 3
Views: 195
|
Forum: Scripting Help
01/06/2018, 02:30 PM
|
Replies: 7
Views: 371
Re: Register
Go check this out: https://www.youtube.com/watch?v=7mpYjz-tbiQ
|
Forum: Scripting Help
24/05/2018, 06:09 AM
|
Replies: 3
Views: 359
Re: Cookies
Show us the code you have already and we might be able to point you in the right direction.
|
Forum: Scripting Help
23/05/2018, 09:00 AM
|
Replies: 3
Views: 2,223
|
Forum: Plugin Development
17/05/2018, 03:40 PM
|
Replies: 34
Views: 12,645
Re: PawnPlus
Would this allow people like ****** to provide true inline callbacks? Aka. define then after the function call?
|
Forum: Scripting Help
15/05/2018, 09:30 AM
|
Replies: 3
Views: 232
|
Forum: Scripting Help
15/05/2018, 09:26 AM
|
Replies: 14
Views: 474
|
Forum: Scripting Help
09/05/2018, 11:29 AM
|
Replies: 14
Views: 766
Re: Chance!
Mate, the code you are quoting does indeed give a semi-random chance. The topic starter can use it to learn or adapt the script to his purpose. We are not his personal scripting army.
|
Forum: Server Support
01/05/2018, 01:35 PM
|
Replies: 2
Views: 531
|
Forum: Server Support
27/04/2018, 09:03 AM
|
Replies: 3
Views: 544
|
Forum: Scripting Help
24/04/2018, 08:53 AM
|
Replies: 4
Views: 377
Re: Where should I save the salts?
The only reason you would use a salt is to slow down an attacker. If they have access to your database it's a lost cause anyway.
It is perfectly fine to store the unique salt alongside the hash in...
|