[Pawn] Gamemode is not detected - Printable Version + open.mp forum (https://forum.open.mp) -- Forum: SA-MP (https://forum.open.mp/forumdisplay.php?fid=3) --- Forum: Pawn Scripting (https://forum.open.mp/forumdisplay.php?fid=10) --- Thread: [Pawn] Gamemode is not detected (/showthread.php?tid=2128) |
Gamemode is not detected - fzbian - 2021-06-22 Sorry for my English I am learning Pawno however I have had a few problems when starting my server, one of those is this: I was googling this error however I did not find a concrete solution, here I leave you my gamemode and my files in case someone has the solution, I would appreciate it very much My server.cfg Code: echo Executing Server Config... My gamemode https://pastebin.com/2yqDMZ5L My plugins folder: RE: Gamemode is not detected - Radical - 2021-06-22 Add this to your script. Code: main() { } RE: Gamemode is not detected - Kwarde - 2021-06-22 (2021-06-22, 08:28 AM)Radical Wrote: Add this to your script. That would cause a "invalid entry point" runtime error. "File or function not found" is exactly what it sounds like. A file or a function isn't found. You can use crashdetect to find out what function it's missing. However, I took a quick look on that script and: Code: native WP_Hash(buffer[], len, const str[]); Whirlpool isn't included (plugin), so this is causing your issue. If the problem still exists after adding Whirlpool, you're missing another function in which case you can use crashdetect (and compile with option -d3) |