include a_samp sempre no topo e sempre compilar com o crash detect
isso que você fez é uma solução temporária, pragma no geral é apenas uma gambiarra pra ocultar os avisos do compilador
aqui tem uma lista de erros de tempo de execução https://sampforum.blast.hk/showthread.php?tid=482429
aqui tem um solução diferente mas não lembro agora se a longo prazo isso pode travar o servidor https://sampforum.blast.hk/showthread.php?tid=409184
leia o erro 106 aqui https://forums.alliedmods.net/showthread.php?t=201044
Your script has apparently ran out of local memory. The stack is where any local variables are allocated and stored, in terms of memory. This means that the stack and the heap are colliding with each other, which could effectively corrupt data in the long run.
Solution: Try to use less cells for local declaration. For example, huge strings can be declared using "static" so it isn't allocated every function call. Alternatively, there's "#pragma dynamic x" but that's only if you're lazy.
https://github.com/pawn-lang/compiler/bl...n-lang.pdf
isso que você fez é uma solução temporária, pragma no geral é apenas uma gambiarra pra ocultar os avisos do compilador
aqui tem uma lista de erros de tempo de execução https://sampforum.blast.hk/showthread.php?tid=482429
aqui tem um solução diferente mas não lembro agora se a longo prazo isso pode travar o servidor https://sampforum.blast.hk/showthread.php?tid=409184
leia o erro 106 aqui https://forums.alliedmods.net/showthread.php?t=201044
Your script has apparently ran out of local memory. The stack is where any local variables are allocated and stored, in terms of memory. This means that the stack and the heap are colliding with each other, which could effectively corrupt data in the long run.
Solution: Try to use less cells for local declaration. For example, huge strings can be declared using "static" so it isn't allocated every function call. Alternatively, there's "#pragma dynamic x" but that's only if you're lazy.
https://github.com/pawn-lang/compiler/bl...n-lang.pdf