AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   New Plugin Submissions (https://forums.alliedmods.net/forumdisplay.php?f=26)
-   -   FPS Limiter v0.5 (https://forums.alliedmods.net/showthread.php?t=334150)

Natsheh 10-04-2021 16:59

Re: FPS Limiter v0.4
 
Well let me tell you that the fps limiter is not meant to be set on a competitive servers but more like on modded servers where shooting is not the only thing, and i am not delusional i know the script is well coded and the plugin is unique.

thEsp 10-05-2021 04:55

Re: FPS Limiter v0.4
 
Quote:

and i am not delusional i know the script is well coded and the plugin is unique
Most definitely...

Natsheh 10-05-2021 06:36

Re: FPS Limiter v0.4
 
Quote:

Originally Posted by thEsp (Post 2759690)
Most definitely...

Till now you're useless arguing, instead post links for other fps limiter plugins, or you can just stop arguing about nonsense and remain silent, if you've found a similar plugin to this one i shall remove it.

And here're some examples of bad/useless plugins

Code:

https://forums.alliedmods.net/showthread.php?t=316778
https://forums.alliedmods.net/showthread.php?t=321913
https://forums.alliedmods.net/showthread.php?t=322090
https://forums.alliedmods.net/showthread.php?t=314431

And there're alot more you can find them here.

thEsp 10-05-2021 09:41

Re: FPS Limiter v0.4
 
:salty:

kooomax 12-20-2021 19:36

Re: FPS Limiter v0.5
 
https://i.ibb.co/82nSj0w/image.png
Help ?

//AMXXPC compile.exe
// by the AMX Mod X Dev Team


//// fps_limiter.sma
// D:\Program\Fraps\mods\addons furien\addons\amxmodx\scripting\fps_limiter.s ma(119 -- 121) : error 017: undefined symbol "CvarType_Integer"
// D:\Program\Fraps\mods\addons furien\addons\amxmodx\scripting\fps_limiter.s ma(124 -- 126) : error 017: undefined symbol "CvarType_Integer"
// D:\Program\Fraps\mods\addons furien\addons\amxmodx\scripting\fps_limiter.s ma(162) : warning 213: tag mismatch
// D:\Program\Fraps\mods\addons furien\addons\amxmodx\scripting\fps_limiter.s ma(162) : warning 213: tag mismatch
// D:\Program\Fraps\mods\addons furien\addons\amxmodx\scripting\fps_limiter.s ma(167) : warning 213: tag mismatch
// D:\Program\Fraps\mods\addons furien\addons\amxmodx\scripting\fps_limiter.s ma(176) : warning 213: tag mismatch
// D:\Program\Fraps\mods\addons furien\addons\amxmodx\scripting\fps_limiter.s ma(194) : warning 213: tag mismatch
//
// 2 Errors.
// Could not locate output file D:\Program\Fraps\mods\addons furien\addons\amxmodx\scripting\compiled\fps_ limiter.amx (compile failed).
//
// Compilation Time: 0.16 sec
// ----------------------------------------

Press enter to exit ...

OciXCrom 12-21-2021 06:47

Re: FPS Limiter v0.5
 
Read the requirements.

kooomax 12-21-2021 14:25

Re: FPS Limiter v0.5
 
I did and put libraries

OciXCrom 12-21-2021 14:49

Re: FPS Limiter v0.5
 
Add

Code:
#define CvarType_Integer CvarType_Int

under

Code:
#include < cvar_util >

kooomax 12-21-2021 21:02

Re: FPS Limiter v0.5
 
This plugin is unstable

Quote:

Auto-restarting the server on crash

Console initialized.
Using breakpad crash handler
Setting breakpad minidump AppID = 10
Forcing breakpad minidump interfaces to load
dlopen failed trying to load:
/home/client57/.steam/sdk32/steamclient.so
with error:
/home/client57/.steam/sdk32/steamclient.so: cannot open shared object file: No such file or directory
Looking up breakpad interfaces from steamclient
Calling BreakpadMiniDumpSystemInit
Protocol version 48
Exe version 1.1.2.7/Stdio (cstrike)
Exe build: 03:13:55 Oct 25 2021 (2753)
STEAM Auth Server
Alias name is invalid
Alias name is invalid
Alias name is invalid
Server IP address 137.74.231.87:27015

Metamod-r version 1.3.0.128 Copyright (c) 2016-2018 ReHLDS Team (rebuild of original Metamod by Will Day and Jussi Kivilinna)
Metamod-r comes with ABSOLUTELY NO WARRANTY; for details type `meta gpl'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `meta gpl' for details.

Metamod-r v1.3.0.128, API (5:13)
Metamod-r build: 17:47:48 Aug 24 2018
Metamod-r from: https://github.com/theAsmodai/metamod-r/commit/0cf2f70

AMX Mod X version 1.8.2 Copyright (c) 2004-2006 AMX Mod X Development Team
AMX Mod X comes with ABSOLUTELY NO WARRANTY; for details type `amxx gpl'.
This is free software and you are welcome to redistribute it under
certain conditions; type 'amxx gpl' for details.

stray key in process_key: item_getiteminfo 61
./hlds_run: line 255: 8552 Segmentation fault$HL_CMD
[/QUOTE]

bigdaddy424 12-21-2021 22:21

Re: FPS Limiter v0.5
 
Great plugin,
Could you add a native to get current fps for an index?

Code:
native get_user_fps(id) public slash_fps(id){     new iMenu = menu_create("FPS Counter", "menu_handler")     for(new i = 1; i <= sizeof(MAX_PLAYERS); i++){         if (is_user_connected(id))             menu_additem(iMenu, fmt("(%d) %n", get_user_fps(i), i));     }     menu_display(id, iMenu)     return PLUGIN_HANDLED } public menu_handler(id, iMenu, iItem)     menu_destroy(iMenu)


All times are GMT -4. The time now is 06:17.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.