SA-MP Forums Archive
SA-MP 0.3d RC client/server (now released) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: SA-MP 0.3d RC client/server (now released) (/showthread.php?tid=282775)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41


Re: SA-MP 0.3d RC2 test version - Gotti_ - 18.09.2011

When will you fix a bug with fakeing players ?


Re: SA-MP 0.3d RC2 test version - juraska - 18.09.2011

Thanks Kalcor, SA-MP shows significant progress.


AW: SA-MP 0.3d RC2 test version - BloodyEric - 18.09.2011

Picture of the Password-Dialog:

Click


Re: SA-MP 0.3d RC2 test version - JiHost - 18.09.2011

I like password masking in RC2. OnPlayerTakeDamage is good too!


Re: SA-MP 0.3d RC2 test version - BaubaS - 18.09.2011

Quote:

taxi signs which can be attached to any vehicle.

how?

/like


Re: SA-MP 0.3d RC2 test version - Danny - 18.09.2011

Wow, God really listen to my prays

Thanks Kalcor


Re: SA-MP 0.3d RC2 test version - Michael@Belgium - 18.09.2011

oh nice update (to RC2) !


Re: SA-MP 0.3d RC2 test version - Jochemd - 18.09.2011

Thanks for the new release, I love the new functions!


Re: SA-MP 0.3d RC2 test version - Fat - 18.09.2011

Код:
DIALOG_STYLE_PASSWORD
Will help alot, thanks for this amazing update.


Re: SA-MP 0.3d RC2 test version - TheArcher - 18.09.2011

Quote:

Added DIALOG_STYLE_PASSWORD for ShowPlayerDialog() which shows a masked input box

Finnaly it was added.


Re: SA-MP 0.3d RC2 test version - [L3th4l] - 18.09.2011

Nice, thanks for adding
pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid)



Re: SA-MP 0.3d RC2 test version - Burridge - 18.09.2011

LOVE the DIALOG_STYLE_PASSWORD, and OnPlayerTakeDamage. Finally


Re: SA-MP 0.3d RC2 test version - zeromaxell - 18.09.2011

any video of rc2 version?


Re: SA-MP 0.3d RC2 test version - Speed - 18.09.2011

what is here wrong

pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid)
{
    new string[128];
    format(string, sizeof(string), "You lost %d HP. Issuerid is: %s, with weapon ID: %i",amount, PlayerName(issuerid), weaponid);
    SendClientMessage(playerid, -1, string);
    return 1;
}

stock PlayerName(playerid)
{
    new name[MAX_PLAYER_NAME];
    GetPlayerName(playerid,name, sizeof(name));
    return name;
}
All is good expect ammount of HP, it type 116546 big numbers, any ideas?


Re: SA-MP 0.3d RC2 test version - gedux123775 - 18.09.2011

pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid)
{
    new string[128];
    format(string, sizeof(string), "You lost %f HP. Issuerid is: %s, with weapon ID: %i",amount, PlayerName(issuerid), weaponid);
    SendClientMessage(playerid, -1, string);
    return 1;
}

stock PlayerName(playerid)
{
    new name[MAX_PLAYER_NAME];
    GetPlayerName(playerid,name, sizeof(name));
    return name;
}



Re: SA-MP 0.3d RC2 test version - TheArcher - 18.09.2011

Quote:
Originally Posted by Speed
Посмотреть сообщение
what is here wrong

pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid)
{
    new string[128];
    format(string, sizeof(string), "You lost %d HP. Issuerid is: %s, with weapon ID: %i",amount, PlayerName(issuerid), weaponid);
    SendClientMessage(playerid, -1, string);
    return 1;
}

stock PlayerName(playerid)
{
    new name[MAX_PLAYER_NAME];
    GetPlayerName(playerid,name, sizeof(name));
    return name;
}
All is good expect ammount of HP, it type 116546 big numbers, any ideas?
You lost %f HP not %d. It's a float not an integer.


Re: SA-MP 0.3d RC2 test version - Johnny_Xayc - 18.09.2011

Fuck Yeah!


Re: SA-MP 0.3d RC2 test version - WackoX - 18.09.2011

I don't know if this is a 'bug', but i'm posting it anyways.
The passenger can kill the driver if he drive-by's in a weird angle:

[ame]http://www.youtube.com/watch?v=1ti70-I7Dzs[/ame]


Re: SA-MP 0.3d RC2 test version - ben4uka - 18.09.2011

What about:
Код:
SetPlayerGravity(playerid, Float:Gravity);
?


Re: SA-MP 0.3d RC2 test version - WoodPecker - 18.09.2011

Thanks for the new update SAMP team.