Search Results
Quote: Originally Posted by Lorenc_ The syntax function overall complicates things and necessarily isn't a 'user-friendly' addition. Trying some of this stuff out, but I just have a feeli...
2,061
@DRIFT_HUNTER, as i said before, i used that plugin for detecting the advertisements made by players on my server, so that plugin was tested a lot. After i built some nice and working syntaxes i set u...
2,061
Thanks for feedback :d. This can have more uses. Beside email validation, i use it for detecting the advertisments made by players on my server. So each time a player uses the chat, this is used.
2,061
IntroductionFirst of all, i am sorry that i didn't released the first version here. Anyway, it's not such a big loose since this one is way better . Secondly I know that there's already a plugin that ...
2,061
Well, you first declare bevipo and suvip as strings, and then try to format them as decimals: Код: new suvip[50]; new bevipo[50]; . . . format(msg, sizeof(msg), "{23C8D6}Važinėdami su šia Tr.Pr...
110
And there's another bracket in plus in that if statement. Код: if(newkeys & KEY_FIRE && ForbiddenGuns(playerid) && !pInfo[playerid][pLevel] >= 0)) Delete it
183
I'd like to. But why don't you use format with SCM? You have to write 2 lines instead of 1 but at least you'll be sure that you did it the right way.
149
The only wrong thing i see there is that you try to output the playerip which is a string as a decimal (%d) pawn Код: CMD:check(playerid,params[]){    if(PlayerInfo[playerid][Admin] >= 1 || I...
149
pawn Код: stock GetHighestKiller(){    new m;    for(new i = 0 ; i <= MAX_PLAYERS ; i++)    {        if(KillerScore[i] > KillerScore[m])        {            m = i;    Â...
145
@rittik. As you can see it's only 1 minute difference between our posts so i didn't intended to double post you. Also, i could see that in first instance your post wasn't finished (or was wrong) since...
145
It says "No available updates" only if the HouseInfo[h][hArm]!=1 or if IsACop(playerid) returns 0. Check both of them and see what's wrong. Also you can format and sendclientmessage with HouseInfo[h][...
90
I'm so disappointed of me... I tried almost everything but i didn't even looked on what's up from the "sendclientmessage change state...". I had: pawn Код: public OnPlayerStateChange(playerid, ne...
200
My gamemode. I tried to remove some of my includes, the onunocuppiedvehicle,onplayerexit callback and all the other instructions under OnPlayerStateChange. Still no result... Bump
200
I'm not at home so i can't verify by myself, but are you sure that the coordinates are ok? I don't really know what you mean by "North, South, East, West" but keep in mind that maxX and maxY are the v...
147
There are many ways you can do that, but i simply prefer: pawn Код: BanMenu[playerid][Reason][0]=EOS; EOS or '\0' stands for the null character.
125
I'm not sure, but i don't think that you can declare a default value in an enum. Just make: pawn Код: enum BanData{    TargetID,    bool:Permanent,    Reason[65],    D_Years,    D_Months...
125
You write a too long line. Try: pawn Код: new string[494];format(string, sizeof(string), "{FFCE39}The following settings will be applied for your ban. Do you want to continue?\n\n{FFCE39}Player: {...
125
If you're using a 0.3z or a higher version of samp, the callback OnPlayerWeaponShot should be forwarded in the a_samp.inc. Quote: Originally Posted by A_SAMP.INC /* SA-MP Functions * * ...
107
Are you using samp 0.3z or higher? https://sampwiki.blast.hk/wiki/OnPlayerWeaponShot Quote: Originally Posted by SA-MP wiki This callback was added in SA-MP 0.3z and will not work in earl...
107