Search Results
i got this problem a time ago it says "Plugin Architacture wrong" or something like that in the 0.2X samp try to see other plugins code maybe in your main
342
ah ye i've just copied and edited your code, maybe try this Код: float a,b,c,x1,x2,D; scanf("%f",&a); scanf("%f",&b); scanf("%f",&c); printf("readed:\na= %f\nb= %f\nc= %f\...
110
well, you better use gets instead of scanf you can use simply Код: float a,b,c,x1,x2,D; gets(a); gets(b); gets(c); printf("readed:\na= %f\nb= %f\nc= %f\n",&a,&b,&c); and if...
110
Quote: Originally Posted by KyleSmith [b]Can anyone tell me whats wrong with this code? Please? Код: Ratio[playerid] = Kills[playerid] / Deaths[playerid]; i think nothing is wrong...
123
the prob is not in the diaolog id the probleme that i always get the error if there is a space or not
102
use dini to save someones skin permession it's like that 1) you juste download dini and include it to your script 2) when player had permession a file with his name will be created and use "permession...
211
nice, so we don't need to close and open the "samp-server.exe" to restart it
403
try this pawn Код: new Float:X;    new Float:Y;    new Float:Z;    GetPlayerPos(playerid, X, Y, Z);    new mine = CreateObject(1213, X, Y, Z, 0, 0, 96);    if (strcmp("/mine", cmdtext, t...
101
hi, as you see in the title a have a string like this pawn Код: public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]){  if(!response) return 0;  if(dialogid == 0)  {   ...
102