SA-MP 0.3x R1-2 client/server update (optional)
#1

SA-MP 0.3x R1-2 update is available on the Download Page. This version corrects some minor problems in the original 0.3x release and is optional.

Client:

- Fixed: The server browser was using excessive CPU when loading the server lists, which slowed the loading of the lists.
- Fixed: If the nametag hourglass icon could not load, it may cause a crash when you alt-tab from the game.
- Fixed: Object lighting would be disabled when there were material changes but no colour changes.

Server:

- Clients would not see the "Unacceptable NickName" notice.

Please check back for any further updates to the SA-MP client/server.
Reply
#2

Thanks for the fixes.
Reply
#3

Wow, now any nick can be used. Thanks!
Reply
#4

Great, awesome server browser and wait.. No unacceptable nickname notice? Then what
Reply
#5

thanks for this. I crashed a few times already. Wich is fixed now.
Reply
#6

Nice Sa-mp r1-2. Thanks Kalcor and sa-mp team.
Reply
#7

Awesome, thanks Kalcor/SAMP.
Reply
#8

Thx
Reply
#9

Good work!

PHP Code:
public OnPlayerConnect(playerid)
{
    
SendClientMessage(playerid, -1"TEST"); // not shown :(
    
Kick(playerid);
    return 
1;

please fix it
Reply
#10

Quote:
Originally Posted by DrSlett
View Post
Good work!

PHP Code:
public OnPlayerConnect(playerid)
{
    
SendClientMessage(playerid, -1"TEST"); // not shown :(
    
Kick(playerid);
    return 
1;

please fix it
yes, this is need fix or create any one function for kick player.
Reply
#11

Great!
Reply
#12

Fix the sync problems. By the way, please allow us to use all keyboard characters(for username).
Reply
#13

Thanks Kalcor!
Reply
#14

Quote:
Originally Posted by DrSlett
View Post
Good work!

PHP Code:
public OnPlayerConnect(playerid)
{
    
SendClientMessage(playerid, -1"TEST"); // not shown :(
    
Kick(playerid);
    return 
1;

please fix it
That never worked reliably.

pawn Code:
forward KickPublic(playerid);
public KickPublic(playerid) { Kick(playerid); }

KickWithMessage(playerid, message[])
{
    SendClientMessage(playerid, 0xFF4444FF, message);
    SetTimerEx("KickPublic", 1000, 0, "d", playerid);
}
Put that in your script. Now use KickWithMessage(playerid, "Bye!"); instead of SendClientMessage, Kick.
Reply
#15

Great,thanks!
Reply
#16

Great,
Reply
#17

Quote:
Originally Posted by Kalcor
View Post
That never worked reliably.

pawn Code:
forward KickPublic(playerid);
public KickPublic(playerid) { Kick(playerid); }

KickWithMessage(playerid, message[])
{
    SendClientMessage(playerid, 0xFF4444FF, message);
    SetTimerEx("KickPublic", 1000, 0, "d", playerid);
}
Put that in your script. Now use KickWithMessage(playerid, "Bye!"); instead of SendClientMessage, Kick.
why can't you just fix it in client/server code? There are many bugs and we are tired of making workarounds for every bug.
Reply
#18

Guys pls fix the freeze of client after pressing "Connect"! I wanna play!!!!!!!
Reply
#19

Thanks alot for the update!
Reply
#20

Quote:
Originally Posted by zgintasz
View Post
why can't you just fix it in client/server code? There are many bugs and we are tired of making workarounds for every bug.
It's not a bug. It's intended behaviour. Kick() will cancel all pending packets and ignore any further messages from the player.

This had to be done for security reasons.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)