File or function not found
#1

Okay, I face this problem once again while using LINUX

I dont know why do I face this problem, everything works right.

I'm using .so plugins, and using the "bind: ip", triangle.gs

I dont know the solution, can anyone help?
Reply
#2

If I had a nickle for everytime this topic was made..

Take a look at this plugin - showthread.php?t=249226
Reply
#3

I've also used nativechecker, still not working.
Reply
#4

Quote:

I'm using .so plugins, and using the "bind: ip", triangle.gs

What do you mean using the bind:ip?
You need to be more specific because i can not understand what you're trying to ask us to help you with.
Reply
#5

Just ignore the bind something

I want to fix the file or function is not found
Reply
#6

- Do you got any errors with Nativechecker?
- Did you compile your gamemode/filterscript with proper-includes?
Reply
#7

Oh, I did not compile the gamemode, I do not have the include for nativechecker.
Reply
#8

Run the server, with nativechecker at the END of the plugins list in server.cfg. It's not an include.

Then post the log here, we can't just guess what plugin you're missing.
Reply
#9

Quote:
Originally Posted by PrinceOfPersia
Посмотреть сообщение
Just ignore the bind something

I want to fix the file or function is not found
File or Function is MOSTLY caused because a plugin is missing. You can find out what plugin is missing, by downloading the native checker plugin (I hope you've downloaded it already) and put it in the plugins folder. Then, put the nativechecker.so (As you're using triangle.gs, It's linux) at the end of the plugins line. Re-start the server and check the log. The error would be stated above the "Run Time Error 19: File or Function not found" error.
Post that error here and we'll tell you what to do next.
Reply
#10

It's not necessarily related to a missing plugin. This can occur due to missing folders in 'scriptfiles/', missing includes that are in your script but not in your 'pawno/includes/' folder, or missing plugin as you mentioned.

For example, if your script tries to access a file located in: "scriptfiles/Users/Stats/', and if you don't have the "Users" or "Stats" folders, the server will most likely crash when you attempt to access it. You can use 'fexist' to perform checks to see whether the folder exists upon starting the gamemode and can return a print to remind yourself to add it.
Eg:
pawn Код:
public OnGameModeInit()
{
    if(!fexist("Users/")) print("'Users/' folder is missing. Please add it before starting server.");
    //Rest of code...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)