SA-MP Forums Archive
SA-MP 0.3x R1-2 client/server update (optional) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP (https://sampforum.blast.hk/forumdisplay.php?fid=3)
+--- Forum: News and Updates (https://sampforum.blast.hk/forumdisplay.php?fid=74)
+--- Thread: SA-MP 0.3x R1-2 client/server update (optional) (/showthread.php?tid=413131)

Pages: 1 2 3 4 5 6 7 8


AW: Re: SA-MP 0.3x R1-2 client/server update (optional) - s3rserii - 04.02.2013

Quote:
Originally Posted by Sergei
Посмотреть сообщение
@s3rserii, what the hell are you talking about? All your "ideas" are already possible.
yeah? but i found nothing to remove these problems :/


Re: AW: SA-MP 0.3x R1-2 client/server update (optional) - Kar - 04.02.2013

Quote:
Originally Posted by s3rserii
Посмотреть сообщение
Nice fix Kalcor.
It is possible to add "TextDrawSetSelectableForPlayer"?
I will create a Menu with buttons that i can disable for players who not need it.

I hope u can add this important updates Kalcor

peace
PlayerTextDrawSetSelectable ?


AW: Re: AW: SA-MP 0.3x R1-2 client/server update (optional) - s3rserii - 04.02.2013

Quote:
Originally Posted by Kar
Посмотреть сообщение
PlayerTextDrawSetSelectable ?
Omg, thx why i dont found that?! -.-

And the second problem is also possible now?


Re: SA-MP 0.3x R1-2 client/server update (optional) - CKA3KuH - 04.02.2013

Quote:
Originally Posted by Kalcor
Посмотреть сообщение
- Clients would not see the "Unacceptable NickName" notice.
BUG?




Re: SA-MP 0.3x R1-2 client/server update (optional) - T0pAz - 05.02.2013

Quote:
Originally Posted by CKA3KuH
Посмотреть сообщение
BUG?

What did you set as your name?


Re: AW: Re: AW: SA-MP 0.3x R1-2 client/server update (optional) - Sergei - 05.02.2013

Quote:
Originally Posted by s3rserii
Посмотреть сообщение
Omg, thx why i dont found that?! -.-

And the second problem is also possible now?
Use different dialog IDs, compare inputtext[], etc etc.


Re: SA-MP 0.3x R1-2 client/server update (optional) - Lightning[SV] - 05.02.2013

Thanks for the fixes.


Re: SA-MP 0.3x R1-2 client/server update (optional) - CKA3KuH - 05.02.2013

Quote:
Originally Posted by T0pAz
Посмотреть сообщение
What did you set as your name?
The name was written in Cyrillic.


Re: SA-MP 0.3x R1-2 client/server update (optional) - [PS]NightborN - 05.02.2013

Quote:
Originally Posted by CKA3KuH
Посмотреть сообщение
The name was written in Cyrillic.
You should use a-z A-Z, 0-9


Re: SA-MP 0.3x R1-2 client/server update (optional) - IstuntmanI - 05.02.2013

Thanks for the fixes ... the first one I thought that is only at me.

Quote:
Originally Posted by Kalcor
Посмотреть сообщение
That never worked reliably.

pawn Код:
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.
We can't use it with a smaller timer ? Like 500ms.


Re: SA-MP 0.3x R1-2 client/server update (optional) - Sergei - 05.02.2013

You can try with 0ms. It will be called right after OnPlayerConnect.


Re: SA-MP 0.3x R1-2 client/server update (optional) - Plovix - 05.02.2013

Useful fixes,thank you SA:MP team


AW: Re: AW: Re: AW: SA-MP 0.3x R1-2 client/server update (optional) - s3rserii - 05.02.2013

Quote:
Originally Posted by Sergei
Посмотреть сообщение
Use different dialog IDs, compare inputtext[], etc etc.
i know but...this is not the best solution... it will be easier if we can add own idґs for the items...
20-30% of my code are dialog boxes.. thats crap ^^


Re: SA-MP 0.3x R1-2 client/server update (optional) - M3mPHi$_S3 - 06.02.2013

Good work -


Re: SA-MP 0.3x R1-2 client/server update (optional) - CoaPsyFactor - 06.02.2013

Only few words to say...

0.3x... damn that load speed, 0.3x connecting to database, getting results, and loading everything take about 3times less time than 0.3e


Re: SA-MP 0.3x R1-2 client/server update (optional) - RedWingz - 06.02.2013

Awesome work


Re: SA-MP 0.3x R1-2 client/server update (optional) - Locky_ - 06.02.2013

pawn Код:
public OnPlayerConnect(playerid)
{
    SendClientMessage(playerid, 0xff0000ff, "You can be kicked."); // not visible
    Kick(playerid); //very fast
    return 1;
}



Re: SA-MP 0.3x R1-2 client/server update (optional) - dugi - 06.02.2013

Quote:
Originally Posted by Nickvj7
Посмотреть сообщение
pawn Код:
public OnPlayerConnect(playerid)
{
    SendClientMessage(playerid, 0xff0000ff, "You can be kicked."); // not visible
    Kick(playerid); //very fast
    return 1;
}
See http://forum.sa-mp.com/showpost.php?...2&postcount=14


Re: SA-MP 0.3x R1-2 client/server update (optional) - CrazyChoco - 06.02.2013

Quote:
Originally Posted by dugi
Посмотреть сообщение
I was also going to paste that link :P


Re: SA-MP 0.3x R1-2 client/server update (optional) - Audionic - 06.02.2013

Great Job