21.06.2014, 21:58
(
Последний раз редактировалось kurta999; 21.06.2014 в 23:57.
)
R7 released:
- Added ability to enable/disable default disabled name characters
- Fixed GMX crash, that caused by new gang zone system
- Fixed gang zone flash functions weren't worked
- GetPlayerGearState renamed to GetPlayerLandingGearState
Now you can join to your own server with ANY name:

Default allowed samp characters always enabled, you can't disable them.
Enable spacial characters ony at your own risk! If your server will crash, that's not my problem! If you use file system for saving player stats, then be careful! File names can't contains <>, :, |, *, ?, /, \
https://github.com/kurta999/YSF/releases
- Added ability to enable/disable default disabled name characters
- Fixed GMX crash, that caused by new gang zone system
- Fixed gang zone flash functions weren't worked
- GetPlayerGearState renamed to GetPlayerLandingGearState
Now you can join to your own server with ANY name:

Default allowed samp characters always enabled, you can't disable them.
Enable spacial characters ony at your own risk! If your server will crash, that's not my problem! If you use file system for saving player stats, then be careful! File names can't contains <>, :, |, *, ?, /, \
pawn Код:
native AllowNickNameCharacter(character, bool:allow); //
native IsNickNameCharacterAllowed(character);
// Example: I'll enable {}* characters. Now I can join to my server with {*kurta999*}
public OnFilterScriptInit()
{
AllowNickNameCharacter('{', true);
AllowNickNameCharacter('}', true);
AllowNickNameCharacter('*', true);
}