Search Results
1. The first solution is called local variable, Which means it can only be accessed within the function it is declared into only and then it is removed from memory. The second solution is called globa...
121
Haha I thought they have banned my country, I was worried.
595
The compiler read these words meaning you didn't put them inside the string literals (double quotes)
97
Quote: Originally Posted by Exhibit Zeex compiler gives me this error https://sampforum.blast.hk/showthread.php?tid=519009 Yeah, -Create a text file called pawn.cfg (or open it if alrea...
632
Try to use a different compiler. Zeex compiler for example https://github.com/pawn-lang/compiler/releases
632
I would go with two columns multi rows, Example: settings table has: Setting column as string Value column as integer or w/e Now you just insert rows: isRegister value 0/1 isAds value 0/1 ..etc
99
Quote: Originally Posted by ****** This was a bug introduced in I believe 3.10.7, so don't use that version. I reverted back to 3.10.5 and it works perfectly now! The bug is in 3.10.6 a...
150
Quote: Originally Posted by andrejc999 Код: printf("Hello \ World"); ? It does work like this but i don't like the indentation, It should automatically ignore previous tabs
150
This is the correct way of retrieving string PHP код:     new StoreName[28];     cache_get_field_content(0, "storename", StoreName);     format(rquery, sizeof(rquery), "[ROBBER...
88
Код: printf("Hello \ World"); Output: Код: Hello World I want it to output Код: Hello World It used to be like above but since I have changed my laptop and installed sublime te...
150
First try to install Microsoft Visual C++ Redistributable 2015, if that doesn't work then update Windows. Source: Exact same problem happened to my brother and he fixed it this way.
110
You have that variable commented.. Код: // new id; becomes Код: new id;
134
You can try to zoom out in TextDrawSetPreviewRot and increase the textdraw size in TextDrawTextSize Try this: (Changes are red colored) Код: TDEditor_TD[1] = TextDrawCreate(471.111145, 128.55554...
117
PHP код: //In the main filterscript forward UpdateGamesPlayed(playerid); public UpdateGamesPlayed(playerid) {     Player[playerid][TotalGamesPlayed]++;     return 1; } //In theÂ...
99
I really suggest you to use https://sampwiki.blast.hk/wiki/GameTextForPlayer for this case. But if you really want to use textdraws you can create a timer https://sampwiki.blast.hk/wiki/SetTimerEx to...
145
Check the logs, are there any errors? I suspect it could be the size/length of the query string variable, try increase it if it is low.
153
That warning means you have defined the variable "b" twice in the same scope. Maybe you have a global variable named "b"? or you are not showing the whole cmd.
139
My usual go to includes are: Primary (I always use) zcmd (Include) - Commands processor sscanf2 (Plugin) - Best for searching in strings streamer (Plugin)- To allow bypassing the limits of the checkpo...
161