| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 282 online users. » 1 Member(s) | 279 Guest(s) Google, Bing, JR_Junior
|
| Latest Threads |
Il reste des français sur...
Forum: French/Fran?ais
Last Post: Lionel62300
2 hours ago
» Replies: 3
» Views: 3,919
|
Rttdm
Forum: Advertisements
Last Post: Bright
Yesterday, 12:36 PM
» Replies: 0
» Views: 27
|
Verona Community open ser...
Forum: Advertisements
Last Post: pmemorex2016
2026-01-21, 01:47 PM
» Replies: 0
» Views: 85
|
Verona Community otvaranj...
Forum: Ex-Yu
Last Post: pmemorex2016
2026-01-21, 01:43 PM
» Replies: 0
» Views: 88
|
Aurora RP/CNR
Forum: Advertisements
Last Post: Kewun
2026-01-21, 07:24 AM
» Replies: 0
» Views: 60
|
GameText styles in open.m...
Forum: Pawn Scripting
Last Post: Kar
2026-01-21, 03:53 AM
» Replies: 3
» Views: 1,379
|
Asking something
Forum: General Discussions
Last Post: ALE11
2026-01-20, 03:49 PM
» Replies: 0
» Views: 65
|
PROJECT: LOS ANGELES — TH...
Forum: Advertisements
Last Post: DevonH
2026-01-18, 07:01 PM
» Replies: 11
» Views: 1,266
|
After School Roleplay - L...
Forum: Advertisements
Last Post: cosminupgaming
2026-01-18, 05:50 PM
» Replies: 10
» Views: 936
|
Las Venturas Gang Wars - ...
Forum: Advertisements
Last Post: lvgwgta
2026-01-17, 08:36 PM
» Replies: 0
» Views: 64
|
|
|
| Long callback execution detected (hang or performance issue) |
|
Posted by: GospodinX - 2021-03-07, 10:12 AM - Forum: Pawn Scripting
- Replies (2)
|
 |
Hi guys
My crash detect log is full with this error
Code: Long callback execution detected (hang or performance issue)
AMX backtrace:
#0 0082299c in public WoodGrowing () at
(every one minute)
This is a timer that starts every 60 seconds with a loop
Code: for(new i; i < 2000; i)
I just need to have this loop. How I can improve it to avoid the error.
PHP Code: #define MAX_WOOD 2000
enum Wood
{
dIDImanja,
Float:dWoodX,
Float:dWoodY,
Float:dWoodZ,
dTime,
dPostavljeno,
dObjd,
dText,
dVrsta,
dHour,
dMin,
dWood,
dProsloMinuta,
dProsloSat,
dUkradeno
};
new DI[MAX_WOOD][Wood];
forward WoodGrowing();
public WoodGrowing()
{
new stringv[128];
new vrsta[10];
for(new i; i < sizeof(DI); i)
{
if(DI[i][dPostavljeno] == 1)
{
if(DI[i][dVrsta] == 1) { vrsta = "Sljiva"; }
else if(DI[i][dVrsta] == 2) { vrsta = "Kruska"; }
else if(DI[i][dVrsta] == 3) { vrsta = "Jabuka"; }
if(DI[i][dHour] >= 0 && DI[i][dMin] >= 1)
{
DI[i][dMin] --;
format(stringv,128,"Voce jos nije izraslo !\nVrijeme do izrastanja: %d sati, %d minuta\nVrsta drveca: %s",DI[i][dHour],DI[i][dMin],vrsta);
UpdateDynamic3DTextLabelText(DrvoLabel[i], -1, stringv);
}
else if(DI[i][dMin] == 0 && DI[i][dHour] >= 1)
{
DI[i][dHour] --;
DI[i][dMin] = 60;
format(stringv,128,"Voce jos nije izraslo !\nVrijeme do izrastanja: %d sati, %d minuta\nVrsta drveca: %s",DI[i][dHour],DI[i][dMin],vrsta);
UpdateDynamic3DTextLabelText(DrvoLabel[i], -1, stringv);
}
else if(DI[i][dHour] == 0 && DI[i][dMin] == 0)
{
format(stringv,128,"Voce je izraslo !\nDa oberes voce kucaj/oberivoce\nVrsta drveca:%s",vrsta);
UpdateDynamic3DTextLabelText(DrvoLabel[i], -1, stringv);
if(DI[i][dProsloSat] >= 0 && DI[i][dProsloMinuta] >= 1) DI[i][dProsloMinuta] --;
else if(DI[i][dProsloMinuta] == 0 && DI[i][dProsloSat] >= 1) {
DI[i][dProsloMinuta] --;
DI[i][dProsloSat] = 60;
}
SaveWood(i);
}
}
}
return 1;
}
|
|
|
|
[Ajuda] Registrar no SMF in-game |
|
Posted by: Akirah - 2021-03-07, 05:01 AM - Forum: Portuguese/Portugu?s
- Replies (4)
|
 |
Hello!
Bom, gostaria de saber se existe algum tutorial, plugin ou sla o que que possa me ajudar com isso.
Estou querendo fazer com que quando o jogador atingir um certo n?vel automaticamente uma conta para ele ? criada no f?rum, tentei fazer sozinho seguindo minha l?gica por?m n?o deu muito certo, poderiam me ajudar nisto? N?o encontrei nada sobre ;-
Desde j? agrade?o.
|
|
|
|
| Run time error 19: "File or function is not found" |
|
Posted by: Boxi - 2021-03-07, 02:17 AM - Forum: Pawn Scripting
- Replies (6)
|
 |
Hello, it's me again :P Well, many of you will already know this famous error:
Code: [21:42:01] [debug] Run time error 19: "File or function is not found"
[21:42:01] [debug]? WP_Hash
[21:42:01] [debug] Run time error 19: "File or function is not found"
[21:42:01] [debug]? WP_Hash
[21:42:01] Script[gamemodes/roleplay.amx]: Run time error 19: "File or function is not found"
The fact is that I did everything to solve it, such as updating all the plugins and libraries until the code was compiled again. But nothing solves it :c any ideas? Thank you!
Here is a list of the libraries that I am using:
Code: #include <crashdetect>
#include <a_mysql>
#include <foreach>
#include <easyDialog>
#include <eSelection>
#include <sscanf2>
#include <streamer>
#include <zcmd>
Postscript: Gm compiles without any problem
|
|
|
|
| Server crashed |
|
Posted by: RodrigoMSR - 2021-03-06, 11:17 PM - Forum: Support
- Replies (5)
|
 |
Type: Server
Operating System:?Linux (Debian 10)
Server Version: 0.3.7-R3
Plugins Installed: Yes
Plugins (If above is yes):?streamer,?sscanf,?mysql,?filemanager,?pawnraknet
YSI Included: Yes (y_iterate, y_hooks)
Output (Logs):?https://pastebin.com/j4NhpLBC
This crash happened suddenly and it was only once, it had never happened before in this way, what could have caused it??Considering the log, it doesn't seem to be related to any plugin...
|
|
|
|
| Texture Studio doors not opening |
|
Posted by: Kevinas - 2021-03-05, 08:03 AM - Forum: Support
- Replies (2)
|
 |
When I rotate a door it rotates visually, but it's axis doesn't change and stays in the same position, so whenever I rotate a door it opens and closes in the same spots as before, has anyone ever encountered this?
|
|
|
|
| Texture Studio doors not opening |
|
Posted by: Kevinas - 2021-03-05, 07:30 AM - Forum: Pawn Scripting
- Replies (1)
|
 |
When I rotate a door it rotates visually, but it's axis doesn't change and stays in the same position, so whenever I rotate a door it opens and closes in the same spots as before, has anyone ever encountered this?
EDIT: sorry, wrong thread
|
|
|
|
| SetObjectMaterial question!? |
|
Posted by: gokuta - 2021-03-05, 01:03 AM - Forum: Pawn Scripting
- Replies (1)
|
 |
My question is... how do I set material using SetObjectMaterial() that is available in TXD file, but?not used on any object at all! There are plenty of materials never used on any object... please help :(
|
|
|
|
|