[Pawn] Gamemode is not detected - Printable Version +- Burgershot (https://www.burgershot.gg) +-- Forum: SA-MP (https://www.burgershot.gg/forumdisplay.php?fid=3) +--- Forum: Pawn Scripting (https://www.burgershot.gg/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[]); |