[Ajuda] onde foi que eu errei?
#1

PHP Code:
PlayerText:CreateBGSelection(playeridFloat:5.0Float:36.0Float:Xx 1.0Float:Yy 1.0)
{
    return 
1;

Erros:
PHP Code:
LinexSelection.pwn(4) : error 001expected token")"but found "-"
LinexSelection.pwn(4) : warning 215expression has no effect
LinexSelection
.pwn(4) : error 017undefined symbol "Y"
LinexSelection.pwn(4) : error 010invalid function or declaration
LinexSelection
.pwn(-- 6) : fatal error 107too many error messages on one line 
Reply
#2

vocк nasceu kkk.

brincadeira.

vocк declarou as variбveis float como ?
Reply
#3

De onde vocк tirou este cуdigo?
Reply
#4

Quote:
Originally Posted by ipsLuan
View Post
De onde vocк tirou este cуdigo?
Eu mesmo estou fazendo.
Reply
#5

Quote:
Originally Posted by B4dSh33p
View Post
Eu mesmo estou fazendo.
https://sampwiki.blast.hk/wiki/Textdraw

Para criar a variбvel, sу й preciso o essencial:
PHP Code:
new PlayerText:TextDrawA[MAX_PLAYERS]; 
Envie o cуdigo completo do que vocк estб fazendo, assim fica mais fбcil.
Reply
#6

o problema nem й a variбvel mano, mas sim os float.
Eu consegui fazer dessa forma
PHP Code:
PlayerText:CreateBGSelection(playerid,Float:X,Float:Y,Float:X2,Float:Y2/*, Float:X - 5.0, Float:Y - 36.0, Float:X2 - 1.0, Float:Y2 - 1.0*/)
{
    
-= 5.0;
    
-= 36.0;
    
X2 -= 1.0;
    
Y2 -= 1.0
Mas acho que fica muito zuado, queria que ficasse tudo definido em uma ъnica linha.
Reply
#7

Quote:
Originally Posted by ipsLuan
View Post
https://sampwiki.blast.hk/wiki/Textdraw

Para criar a variбvel, sу й preciso o essencial:
PHP Code:
new PlayerText:TextDrawA[MAX_PLAYERS]; 
Envie o cуdigo completo do que vocк estб fazendo, assim fica mais fбcil.
Ele quer criar uma funзгo para passar sу os parвmetros da textdraw e a funзгo cria sozinha, sу nгo sei se o pawn aceita isso.

Mano, tenta isso, nгo sei se vai dar certo:
Code:
PlayerText:CreateBGSelection(playerid, Float:X -= 5.0, Float:Y -= 36.0, Float:Xx -= 1.0, Float:Yy -= 1.0) 
{ 
    return 1; 
}
Reply
#8

Deu erro, jб tinha tentado fazer dessa forma.
PHP Code:
(4) : error 001expected token")"but found "-="
(4) : error 010invalid function or declaration
(-- 6) : error 010invalid function or declaration
(-- 6) : fatal error 107too many error messages on one line 
Reply
#9

Code:
PlayerText:CreateBGSelection(playerid, Float:X = -5.0, Float:Y = -36.0, Float:Xx = -1.0, Float:Yy = -1.0) {
    printf("%f, %f, %f, %f", X, Y, Xx, Yy);
}
Reply
#10

Quote:
Originally Posted by 1sbedx
View Post
Code:
PlayerText:CreateBGSelection(playerid, Float:X = -5.0, Float:Y = -36.0, Float:Xx = -1.0, Float:Yy = -1.0) {
    printf("%f, %f, %f, %f", X, Y, Xx, Yy);
}
Verdade, o compilador espera uma , ou um = depois da variбvel.
Assim deve dar certo.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)