28.07.2009, 21:59
Hello Folks,
first of all I'm a german student and it could be, that my school English is one of the worst you've ever read, please excuse me therefor.
Now I'll explain you my problem.
I've copied the Function below out of another board(I can't remenber that one) today I wanted to use it the first time, and get some "tag mismatch"-warnings.
As many others I thought, that it wouldn't be a problem 'cause it's just a warning. But I was wrong... actually the function isn't working..
Could you explain me, why in case of pHealth there is a "tag mismatch"?
Grateful
D3nnis
first of all I'm a german student and it could be, that my school English is one of the worst you've ever read, please excuse me therefor.
Now I'll explain you my problem.
I've copied the Function below out of another board(I can't remenber that one) today I wanted to use it the first time, and get some "tag mismatch"-warnings.
As many others I thought, that it wouldn't be a problem 'cause it's just a warning. But I was wrong... actually the function isn't working..
Could you explain me, why in case of pHealth there is a "tag mismatch"?
Код:
stock GivePlayerHealth(playerid, ammount) { new float:pHealth; GetPlayerHealth(playerid, pHealth); SetPlayerHealth(playerid, pHealth + ammount); return 1; }
D3nnis