| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 6,606
» Latest member: 50K.IMP
» Forum threads: 2,449
» Forum posts: 12,476
Full Statistics
|
| Online Users |
There are currently 205 online users. » 0 Member(s) | 202 Guest(s) Bing, Google, Yandex
|
| Latest Threads |
PROJECT: RENEWAL ROLEPLAY...
Forum: Advertisements
Last Post: zin
7 hours ago
» Replies: 1
» Views: 84
|
Map Pack by: AZZO #1
Forum: Maps
Last Post: MikeNGRP
2026-05-15, 08:52 AM
» Replies: 1
» Views: 1,979
|
[balkan] Ultimate 2020 - ...
Forum: Gamemodes
Last Post: Sardena
2026-05-15, 03:12 AM
» Replies: 11
» Views: 25,181
|
🚀 Free SA-MP Hosting + Op...
Forum: Chat
Last Post: Centnodes
2026-05-12, 05:20 PM
» Replies: 0
» Views: 98
|
Ajuda com salvamento nao ...
Forum: Portuguese/Português
Last Post: zGu1Zin_
2026-05-12, 10:54 AM
» Replies: 3
» Views: 228
|
pawnobots for openmp
Forum: Pawn Scripting
Last Post: MauroRisi
2026-05-11, 03:23 PM
» Replies: 0
» Views: 90
|
Looking for Players for N...
Forum: Advertisements
Last Post: SimonC
2026-05-09, 10:29 PM
» Replies: 1
» Views: 181
|
Las Venturas Gang Wars - ...
Forum: Advertisements
Last Post: lvgwgta
2026-05-08, 04:06 PM
» Replies: 0
» Views: 95
|
[BETA] Renaissance DM — O...
Forum: Advertisements
Last Post: DrVandersexxx
2026-05-04, 01:44 PM
» Replies: 0
» Views: 116
|
Object Remove?
Forum: Support
Last Post: Mivco
2026-04-29, 08:12 PM
» Replies: 0
» Views: 110
|
|
|
| Float bug ? |
|
Posted by: NexoR - 2020-04-19, 01:33 PM - Forum: Pawn Scripting
- Replies (1)
|
 |
Hello, I am working on height calculation. But some places seem incomplete and inaccurate. Can you help with this issue?
My code:
Code: for (new i = 1; i <= 35; i)
{
new Float: X = 1.50 float(i) * 0.01;
printf("%.2f", X);
}
Output:
Code: 1.50
1.51
1.52
1.53
1.54
1.55
-> There is a deficiency here.
1.57
1.58
1.59
1.60
1.61
1.62
-> There is an error here.
1.62
1.63
1.64
1.65
1.66
1.67
-> There is a deficiency here.
1.69
1.70
1.71
1.72
1.73
1.74
1.75
-> There is an error here.
1.75
1.76
1.77
1.78
1.79
1.80
1.81
1.82
-> There is a deficiency here.
1.84
1.85
|
|
|
|
| Having problems with SHA1 storing and loading password |
|
Posted by: Th3CrazzyRabbit - 2020-04-18, 09:56 PM - Forum: Programming
- Replies (5)
|
 |
Well to be honest its first time a costumer asked me for a SHa1 store and load from database as its not that safe anymore , myself i use bcrypt all the time.
However im trying to come together with this? login / signup system and at signup everything works perfectly , sha1 encrypts it and stores it to the database
Now the issue its the loading from database , even tho i write the same password it still doesnt work
this is the code from loading the Sha1
PHP Code: $hashpass = sha1($userpass);
? ? ? ? ? ? ? ?if (password_verify($hashpass, $row['password']))
? ? ? ? ? ? ? ?{
? ? ? ? ? ? ? ? ? ?session_start();
? ? ? ? ? ? ? ? ? ?$_SESSION['userid'] = $row['Master_ID'];
? ? ? ? ? ? ? ? ? ?header("Location:../index.php?login:sucess");
? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?else{
? ? ? ? ? ? ? ? ? ?header("Location:../login.php?error:wrongpassword");
? ? ? ? ? ? ? ? ? ?exit();
? ? ? ? ? ? ? ?}
Storing
PHP Code: $hashedpass = sha1($password);
? ? ? ? ? ? ? ? ? ? ? ?mysqli_stmt_bind_param($stmt, "sss", $username, $email, $hashedpass);
? ? ? ? ? ? ? ? ? ? ? ?mysqli_stmt_execute($stmt);
? ? ? ? ? ? ? ? ? ? ? ?header("Location:../index.php?Signup:Sucessful");
Help me pelase , i really need this.
|
|
|
|
| editing of vehicle handling |
|
Posted by: Gargamelis - 2020-04-18, 03:21 PM - Forum: Questions and Suggestions
- No Replies
|
 |
Dobr? den, bude mo?n? zabr?nit manipulaci s manipulac? s vozidlem nebo pou?it? CLEO pro zmenu manipulace? V soucasn? dobe je skutecne nemo?n? odhalit podvodn?ky pomoc? modifikovan? manipulace a dok?zat jim to?
|
|
|
|
| Ability to connect an NPC to a defined player ID |
|
Posted by: EvilShadeZ - 2020-04-16, 07:49 AM - Forum: Questions and Suggestions
- Replies (4)
|
 |
Being able to connect an NPC to a specific ID would help in terms of server development.?
Let's say my server has 100 player slots and I would like another 100 npc's, I would rather have them connected in slots 100-199 than being mixed in with regular players.
By having NPC's in higher slots, I can reduce Player Information array sizes to the appropriate size to only include players, meanwhile I could create NPC specific arrays that handle NPC-Specific?information.
|
|
|
|
|