SA-MP Forums Archive
sa-mp-server.exe problem - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: sa-mp-server.exe problem (/showthread.php?tid=93267)



sa-mp-server.exe problem - shoru - 24.08.2009

Sorry if I am annoying with this topics but I cant find any way to fix this problem:
I created an gamemode and everything looks fine but when i start winowserver.exe it shows

Script[gamemodes/shoru.amx]: Run time error 20: "Invalid index parameter,bad entry point."


Re: sa-mp-server.exe problem - James_Alex - 24.08.2009

cuz you have forgot to add
pawn Код:
}

main()
{
    print("\nMy Script Credit\n");

    return 1;
in your GM


Re: sa-mp-server.exe problem - shoru - 24.08.2009

public OnFilterScriptExit()
{
return 1;
}

#else
{
return 1;
}
main()
{
print("\nMy Script Credit\n");

return 1;
{
print("\n----------------------------------");
print(" DLF Training GameMode");
print("----------------------------------\n");
}

#endif
public OnGameModeInit()




Same shit


Re: sa-mp-server.exe problem - Typhome - 24.08.2009

Quote:
Originally Posted by shoru
public OnFilterScriptExit()
{
return 1;
}

#else
{
return 1;
}
main()
{
print("\nMy Script Credit\n");

return 1;
{
print("\n----------------------------------");
print(" DLF Training GameMode");
print("----------------------------------\n");
}

#endif
public OnGameModeInit()




Same shit
Код:
public OnFilterScriptExit()
{
	return 1;
}

main()
{
  print("\n----------------------------------");
  print(" DLF Training GameMode");
  print("----------------------------------\n");
}

#endif
public OnGameModeInit()
....



Re: sa-mp-server.exe problem - shoru - 24.08.2009

I added
But still shows that error


Re: sa-mp-server.exe problem - James_Alex - 24.08.2009

mybe you have to add in your GM