• 04 Juin 2026, 14:39:21


Voir les contributions

Cette section vous permet de consulter les contributions (messages, sujets et fichiers joints) d'un utilisateur. Vous ne pourrez voir que les contributions des zones auxquelles vous avez accès.


Messages - nouti

Pages: [1]
1
Autre / Re : Cherche un programmeur
« le: 26 Septembre 2007, 22:04:17 »
 :blink ok, est ce qu'un modo peut suprimé ce post :snip
je vais aller chercher ailleur
encore merci pour votre accueil et votre comprehension  :dry

2
Autre / Re : Cherche un programmeur
« le: 26 Septembre 2007, 18:45:51 »
je veut pas qu'on me pique mon idée ...

3
Autre / Cherche un programmeur
« le: 25 Septembre 2007, 17:19:14 »
salut
je cherche un programmeur (pawn) plutôt doué pour un projet FOU  :cheers ( croyez moi )
donc si quelqu'un se porte volontaire qu'il m'envoi une repose par pm
merci

4
Scripting SA-MP [Pawn center] / Re : pawno
« le: 22 Septembre 2007, 15:09:22 »
salut, voici le code de morphinc.inc (dsl je sais plus ou je l'ai telecharger :-\)


new pdistance = 1;
forward NameTimer();
Float:GetPointDistanceToPointExMorph(Float:x1,Float:y1,Float:z1,Float:x2,Float:y2,Float:z2)
{
new Float:x, Float:y, Float:z;
x = x1-x2;
y = y1-y2;
z = z1-z2;
return floatsqroot(x*x+y*y+z*z);
}
stock SetPDistance(dista)
{
pdistance = dista;
}
stock GetPDistance()
{
return pdistance;
}
stock EnableDistancedNameTag(delay)
{
SetTimer("NameTimer",delay,1);
}
forward NameTimer();
public NameTimer()
{
for(new i = 0;i < MAX_PLAYERS;i++)
  {
  if(IsPlayerConnected(i))
  {
  for(new q = 0;q < MAX_PLAYERS;q++)
  {
if(IsPlayerConnected(q))
{
  new Float:p1x;
new Float:p1y;
new Float:p1z;
new Float:p2x;
new Float:p2y;
new Float:p2z;
if(IsPlayerConnected(i) && IsPlayerConnected(q))
{
GetPlayerPos(i,p1x,p1y,p1z);
    GetPlayerPos(q,p2x,p2y,p2z);
if(GetPointDistanceToPointExMorph(p1x,p1y,p1z,p2x,p2y,p2z) < pdistance)
{
    ShowPlayerNameTagForPlayer(i,q,1);
    }
else
{
ShowPlayerNameTagForPlayer(i,q,0);
}
}}}}}
}

copie ca dans un fichier texte et sauvegarde sous "morphinc.inc"  :D

pour les ID tu peu aller voir ici

Pages: [1]