13.11.2011, 15:24
Rjjj vc me entendeu! to feliz por isso '-'
Bom ai eu fui testar la em um FS novo e pus exatamente assim:
Porem o pawn compiler crasha! "O Pawn Compiler library encontrou um problema e precisa ser fechado." O que serб que deu de errado?
Bom ai eu fui testar la em um FS novo e pus exatamente assim:
pawn Код:
#include <a_samp>
#define X (cellmax)
#define Y (cellmin)
stock Resultado(oX = cellmax, oY = cellmin)
{
if(oX != cellmax && oY == cellmin) return (10 - oX);
else if(oY != cellmin && oX == cellmax) return (10 - oY);
return print("Erro !"), false;
}
new Numero = Resultado(X, 6); //Resultarб em 4, pois se X + Y = 10 e Y = 6, entгo X + 6 = 10 e X = 10 - 6 = 4
public OnFilterScriptInit()
{
printf("%d", Numero); //Imprimirб o nъmero 4
return 1;
}