AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [TF2] Jump Menu (v1.09, 26-10-2013) Now with database support! (https://forums.alliedmods.net/showthread.php?t=204909)

floube 01-04-2013 15:36

[TF2] Jump Menu (v1.09, 26-10-2013) Now with database support!
 
1 Attachment(s)
Jump Menu (v1.09, 26-10-2013) Now with database support!

Description:
Jump Menu is a simple plugin, which provides a list of useful commands for TF2 Jumping and it supports saving player data in a database.

Features:
  • HP-Regen
  • Ammo-Regen (+ Engi Metal & Ullapool Caber)
  • Saving your location
  • Teleporting you to the saved location
  • Reseting your saved location
  • Restart from the beginning
  • Able to save players on database
  • Admin Commands: !goto, !send

ConVars:
  • sm_jmenu_version "1.09" // Jump Menu Plugin Version
  • sm_jmenu_enabled "1" // 0 = Jump Menu Plugin disabled; 1 = Jump Menu Plugin enabled
  • sm_jmenu_database "0" // 0 = Database support disabled; 1 = Database support enabled
  • sm_jmenu_ammo "0.1" // 0 = Ammo-Regen disabled; X = Fill the players ammo every X seconds
  • sm_jmenu_caber "1.0" // 0 = Caber-Reset disabled; X = Reset the Caber every X seconds
  • sm_jmenu_health "0.1" // 0 = HP-Regen disabled; X = Fill the players HP every X seconds
  • sm_jmenu_health_mode "0" // 0 = Heal to maximum HP (class-specific); X = Heal up to X HP
  • sm_jmenu_save "0" // 0 = Save-Teleport-Feature disabled; 1 = Save-Teleport-Feature enabled
  • sm_jmenu_announce "120.0" // 0 = Announcements disabled; X = Fire announcement every X seconds
  • sm_jmenu_noblock "1" // 0 = Players block each other; 1 = Players don't block each others
  • sm_jmenu_sounds "1" // 0 = Sounds disabled; 1 = Sounds enabled (regenerate, hurt, ammo pickup)

Commands:
  • !hp, !regen - Regenerates your HP.
  • !ammo - Regenerates your ammo.
  • !superman - Makes you strong like superman.
  • !s, !save, !jm_saveloc - Saves your current location.
  • !t, !tp, !tele, !teleport, !jm_teleport - Teleports you to your saved location.
  • !restart - Sends you back to the beginning and deletes your save.
  • !reset - Sends you back to the beginning without deleting your save.
  • !jmenu - Opens the Jump Menu.
  • !jsettings - Shows your current jump settings.
  • !goto <target> - [Admin only] Teleports you to a player.
  • !send <target> <destination target> - [Admin only] Teleports a player to another player.

Supported Weapons:
  • All Rocket Launchers - except 'The Begger's Bazooka'
  • All Shotguns
  • All Stickybomb Launchers
  • All Flamethrowers
  • Force-A-Nature

Installation instructions:
Put the plugin (jumpmenu.smx) in your server's plugins folder: addons/sourcemod/plugins

Database support instructions (ONLY TESTED WITH MYSQL):
  1. Create a database
  2. Add a config to databases.cfg found in addons/sourcemod/configs:
    Code:

    "jumpmenu"
    {
            "driver"                        "default" // the driver (default = mysql)
            "host"                                "127.0.0.1" // the host (use 127.0.0.1 instead of localhost)
            "database"                        "jump_test" // the database's name
            "user"                                "root" // the user
            "pass"                                "***" // the user's password
    }

  3. Execute this (replace with your settings):
    Code:

    GRANT SELECT, INSERT, UPDATE, DELETE ON jump_test.* TO 'root'@'127.0.0.1';
  4. Enable database support by sm_jmenu_database "1"
  5. ...
  6. Profit!

ToDo:
  • Database support... DONE!

Changelog:
Code:

26-10-2013 (v1.09)

* Rewrote Ammo-Regen (only supported weps get refilled).
* Removed the timer to get teleported after spawn (players get teleported immediately now).

23-10-2013 (v1.08)

* Added sm_jmenu_sounds cvar to enable/disable sounds (regenerate, hurt, ammo pickup).
* Fixed sm_jmenu_announce "0".

18-10-2013 (v1.07)

* Added sm_jmenu_noblock cvar to enable/disable blocking players.
* Added !goto command.
* Added !send command.

17-10-2013 (v1.06)

* Fixed Save-Teleport-Feature for database users.
* Players are auto-teleported after being spawned.
* Shows box with the current settings after being spawned.

17-10-2013 (v1.05a)

* Fixed Superman-Feature not saving correctly (database).

16-10-2013 (v1.05)

* Added database support.
* Added Metal-Regen (Engineer) within Ammo-Regen.
* Added !superman command.

11-10-2013 (v1.04)

* Rewrote everything from scratch.
* Combined/removed some cvars.
* Added !restart command.
* Added Jump Mode commands (!jm_saveloc, !jm_teleport).
* Each class and team has it's own save location.

30-03-2013 (v1.03)

* Added advertisement: "Type !jmenu or /jmenu to open the Jump Menu."

23-03-2013 (v1.02a)

* Fixed error. (Entity -1 is invalid)

07-02-2013 (v1.02)

* Fixed some minor bugs. (killing yourself with HP-Boost)
* Some code clean-up.

03-02-2013 (v1.01)

* Added support for Ullapool Caber.
* Added sm_jumpmenu_health_mode (0 - Heal to maximum HP (class-specific), 1 - Heal up to amout which is set by sm_jumpmenu_health_amount)
* Saved locations will reset after switching team (to prevent fighting).

04-01-2013 (v1.0)

* Initial release.

Known Bugs:
  • none

If you find bugs or have ideas/suggestions don't be afraid to post them.

serpentine 01-04-2013 16:07

Re: [TF2] Jump Menu (v1.0, 01-04-2013)
 
So it does pretty much the same thing this one does? https://forums.alliedmods.net/showthread.php?p=671355

floube 01-04-2013 16:14

Re: [TF2] Jump Menu (v1.0, 01-04-2013)
 
Well, I've tried this plugin and some functions (e.g. resupply) didn't work for me.

So I decided to make my own, which is working.

Dramex 01-12-2013 19:43

Re: [TF2] Jump Menu (v1.0, 01-04-2013)
 
i like your plugin but there some bugs
Code:

66.8 fps  1/24 on map      jump_scout
L 01/13/2013 - 03:13:31: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:31: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:31: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:31: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:31: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:31: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:31: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:31: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:31: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:31: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:31: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:31: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:31: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:31: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:31: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:31: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:31: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:31: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:31: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:31: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:31: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:31: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:31: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:31: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:31: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:31: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:31: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:31: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:32: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:32: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:32: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:32: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:32: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:32: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:32: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:32: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:32: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:32: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:32: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:32: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:32: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:32: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:32: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:32: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:32: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:32: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:32: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:32: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:32: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:32: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:32: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:32: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:32: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:32: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:32: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:32: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:32: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:32: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:33: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:33: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:33: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:33: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:33: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:33: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:33: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:33: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:33: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:33: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:33: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:33: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:33: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:33: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:33: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:33: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:33: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:33: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:33: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:33: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:33: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:33: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:33: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:33: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:33: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:33: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:33: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:33: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:33: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:33: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:34: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:34: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:34: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:34: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:34: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:34: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:34: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:34: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:34: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:34: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:34: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:34: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:34: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:34: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:34: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:34: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:34: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:34: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:34: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:34: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:34: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:34: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:34: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:34: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:34: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:34: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:34: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:34: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:34: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:34: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:35: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:35: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:35: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:35: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:35: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:35: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:35: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:35: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:35: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:35: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:35: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:35: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:35: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:35: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:35: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:35: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:35: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:35: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:35: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:35: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:35: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:35: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:35: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:35: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:35: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:35: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:35: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:35: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.
L 01/13/2013 - 03:13:35: [SM] Displaying call stack trace for plugin "jumpmenu.s
mx":
L 01/13/2013 - 03:13:35: [SM]  [0]  Line 271, /home/groups/alliedmodders/forums
/files/2/2/0/0/5/0/114098.attach::setAmmo()
L 01/13/2013 - 03:13:36: [SM] Native "ReadPackCell" reported: DataPack operation
 is out of bounds.

This caused spam in server console + server logs :cry:
and Ammo Regin does not work for me :)


Quote:

Originally Posted by serpentine (Post 1867101)
So it does pretty much the same thing this one does? https://forums.alliedmods.net/showthread.php?p=671355

this mod does not have menu and it's so old!

water711 01-13-2013 10:49

Re: [TF2] Jump Menu (v1.0, 01-04-2013)
 
floube

I've installed this plugin in the server
But there are simple things I'd like you to fix

1- as a demo man with the Ullapool caber u can't hit the wall more than once :( even with the Ammo-Regen ON
2- if you are in BLUE team then you save and you changed the team to RED, you can teleport back :(
then the players start fighting ~~

I like your plugin :)

floube 02-03-2013 05:52

Re: [TF2] Jump Menu (v1.01, 02-03-2013)
 
Update - 1.01
  • Added support for Ullapool Caber.
  • Added sm_jumpmenu_health_mode (0 - Heal to maximum HP (class-specific), 1 - Heal up to amout which is set by sm_jumpmenu_health_amount)
  • Saved locations will reset after switching team (to prevent fighting).

Bugs:
  • All saved locations will reset after changing team

Avaray 02-03-2013 13:08

Re: [TF2] Jump Menu (v1.01, 02-03-2013)
 
Server owners can use mp_humans_must_join_team to prevent fighting or spawning in wrong teams.

And better Idea is: Save location should be for SteamID, Team and Class.
That should prevent people from beating certain levels on other classes:
explanation: "ohhh this level is hard for Soldier. I will take demoman!"

Sorry for my English :P

floube 02-04-2013 08:49

Re: [TF2] Jump Menu (v1.01, 02-03-2013)
 
Quote:

Originally Posted by Avaray (Post 1886277)
Server owners can use mp_humans_must_join_team to prevent fighting or spawning in wrong teams.

And better Idea is: Save location should be for SteamID, Team and Class.
That should prevent people from beating certain levels on other classes:
explanation: "ohhh this level is hard for Soldier. I will take demoman!"

Sorry for my English :P

Nice idea! I'll work on it... not sure how it should work with SteamID ^^

Class-specific saving shouldn't be that hard.

Thank you!

floube 02-07-2013 09:26

Re: [TF2] Jump Menu (v1.02, 07-02-2013)
 
Update - 1.02
  • Fixed some minor bugs. (... killing yourself with HP-Boost)
  • Some code clean-up.

MrAwesomePhantom 02-15-2013 09:45

Re: [TF2] Jump Menu (v1.02, 07-02-2013)
 
I get this error when some one join which eventually crashes the server. I like the plugin but unless their is a fix for this its unusable:cry:

I get this error just spamming the console/logs
HTML Code:

L 02/15/2013 - 21:00:35: Info (map "jump_annex") (file "errors_20130215.log")
L 02/15/2013 - 21:00:35: [SM] Native "SetEntData" reported: Entity -1 (-1) is invalid
L 02/15/2013 - 21:00:35: [SM] Displaying call stack trace for plugin "jumpmode.smx":
L 02/15/2013 - 21:00:35: [SM]  [0]  Line 566, jumpmode.sp::GiveAmmo()
L 02/15/2013 - 21:00:35: [SM]  [1]  Line 275, jumpmode.sp::eventPlayerHurt()
L 02/15/2013 - 21:00:39: [SM] Native "SetEntData" reported: Entity -1 (-1) is invalid
L 02/15/2013 - 21:00:39: [SM] Displaying call stack trace for plugin "jumpmode.smx":
L 02/15/2013 - 21:00:39: [SM]  [0]  Line 566, jumpmode.sp::GiveAmmo()
L 02/15/2013 - 21:00:39: [SM]  [1]  Line 275, jumpmode.sp::eventPlayerHurt()
L 02/15/2013 - 21:00:46: [SM] Native "SetEntData" reported: Entity -1 (-1) is invalid



All times are GMT -4. The time now is 04:20.

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