AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [ANY?] Advanced Parachute | *UPDATED 9.7.2017* | *VERSION 1.0* (https://forums.alliedmods.net/showthread.php?t=299250)

ESK0 07-08-2017 20:11

[ANY?] Advanced Parachute | *UPDATED 9.7.2017* | *VERSION 1.0*
 
Hello guys,

Advanced Parachute is remake of SWAT_88's SM Parachute. But comes with few more features


Client Commands:
  • !parachute - Open menu with available parachutes

Features:
  • Can be added more than one parachute
  • Parachute can be flag locked

Installation:
  • Move AdvancedParachute.cfg to your addons/sourcemod/configs folder.
  • Move AdvancedParachuteDownload.txt to your addons/sourcemod/configs folder.
  • Move AdvancedParachute.smx to addons/sourcemod/plugins folder.
  • Move models folder to your game folder. (e.g. csgo, tf2)
  • Move materials folder to your game folder. (e.g. csgo, tf2)
  • Restart server/Change map

Config preview:
Code:


"AdvancedParachute"
{
  "Blue" // Parachute name
  {
    "model" "models/parachute/parachute_blue.mdl" // Model path
    "default" "1" // This parachute is default for new players
    "flag" "" // Parachute does not require flag -- (Can be also removed)
  }
  "Gargoyle"
  {
    "model" "models/parachute/gargoyle.mdl"
    "default" "0" // Not necessary if is default parachute set
    "flag" "a" // Parachute available only for players with flag "a"
  }
}

Wanna more parachutes? <---------- CLICK

Todo:
  • ConVars
  • MySql support

Change log:
Code:

Version 1.0:

- Initial commit

Download

Lannister 07-08-2017 20:15

Re: [ANY?] Advanced Parachute | *UPDATED 9.7.2017* | *VERSION 1.0*
 
Finally! thanks alot for this!

Does it allow us to make, for example, that VIP users get a different parachute than normal users? example

b flag = Blue parachute
q flag = Yellow parachute
z flag = red parachute

and so on?

Thanks!

ESK0 07-08-2017 20:34

Re: [ANY?] Advanced Parachute | *UPDATED 9.7.2017* | *VERSION 1.0*
 
Quote:

Originally Posted by Lannister (Post 2534160)
Finally! thanks alot for this!

Does it allow us to make, for example, that VIP users get a different parachute than normal users? example

b flag = Blue parachute
q flag = Yellow parachute
z flag = red parachute

and so on?

Thanks!

Yes it supports flags option. Look inside .cfg.

PHP Code:

"flag" "b" // Parachute available only for players with flag "b"
"flag" "q" // Parachute available only for players with flag "q"
"flag" "z" // Parachute available only for players with flag "z" 


EMINEM_FB 07-09-2017 05:20

Re: [ANY?] Advanced Parachute | *UPDATED 9.7.2017* | *VERSION 1.0*
 
1 Attachment(s)
Hello, do you want a big parachute pack prepared in this plugin? Just download him :)

This pack have this models (click on picture for preview or download)


http://files.gamebanana.com/img/ss/s...f9c5741233.jpg http://files.gamebanana.com/img/ss/s...f9f6e34729.jpg http://files.gamebanana.com/img/ss/s...fa2dc23c0e.jpg http://files.gamebanana.com/img/ss/s...fa45a6e684.jpg http://files.gamebanana.com/img/ss/s...fa994f1ee7.jpg http://files.gamebanana.com/img/ss/s...fb4a7d5e46.jpg http://files.gamebanana.com/img/ss/s...fc2f8b0ec5.jpg

Warning: In this file include only FDL Files, Server Side files, AdvancedParachute.cfg, AdvancedParachuteDownload.txt but not plugin.

SpicyGamers 07-09-2017 06:31

Re: [ANY?] Advanced Parachute | *UPDATED 9.7.2017* | *VERSION 1.0*
 
Suggestion

Put the plugin in mysql, if possible
And try to put this compativel with the store, buy parachutes with credits.

ESK0 07-09-2017 07:53

Re: [ANY?] Advanced Parachute | *UPDATED 9.7.2017* | *VERSION 1.0*
 
Quote:

Originally Posted by SpicyGamers (Post 2534227)
Suggestion

Put the plugin in mysql, if possible
And try to put this compativel with the store, buy parachutes with credits.

Mysql support will be added :) But I am not familiar with store plugins

FlawlessKush 07-25-2017 00:32

Re: [ANY?] Advanced Parachute | *UPDATED 9.7.2017* | *VERSION 1.0*
 
Quote:

Originally Posted by ESK0 (Post 2534240)
Mysql support will be added :) But I am not familiar with store plugins

Can you add cvar for cooldown timer can easily spam parachutes when jumping,

or add feature that only allow parachute at certain velocity, so you cannot just jump + parachute spam

Would be really nice for surf servers,

so i noticed in csgo walking default velocity is 250, and when jump you get 290-300 velocity anything above is ok to parachute

Lannister 08-05-2017 15:08

Re: [ANY?] Advanced Parachute | *UPDATED 9.7.2017* | *VERSION 1.0*
 
Hello, thanks again for this nice plugin, however i want to report some bugs that i've found, i've configure the cfg to make VIP's, Admins and Owners to have parachute, only for them and nothing for normal users, but even adding flags to the config all the users have parachute.

This is my config
Code:

"AdvancedParachute"
{
  "Carbon"
  {
    "model" "models/parachute/parachute_carbon.mdl"
    "default" "1"
    "flag" "b"
  }
  "Carbon"
  {
    "model" "models/parachute/parachute_carbon.mdl"
    "default" "0"
    "flag" "q"
  }
  "Rainbow"
  {
    "model" "models/parachute/parachute_rainbow.mdl"
    "default" "0"
    "flag" "z"
  }
}

Also VIPS that were using the command !parachute were also abble to use Admins parachute (which is the same model, but still they shouldn't be abble to select the admin parachute), i've tried to change this line in the first parachute " "default" "1" to 0, since i thought that this was the reason of why (even if it has a flag) normal users were abble to use the parachute, but, doing this makes the plugin don't load, and gives a error saying that "Default parachute not found"

Thanks in advance

EMINEM_FB 09-16-2017 05:21

Re: [ANY?] Advanced Parachute | *UPDATED 9.7.2017* | *VERSION 1.0*
 
Yup. Flags dont work.

zipcore 09-16-2017 06:28

Re: [ANY?] Advanced Parachute | *UPDATED 9.7.2017* | *VERSION 1.0*
 
You may like to overtake some of my features: https://gitlab.com/Zipcore/HungerGam...s/parachute.sp

Like add option to block weapons while parachut is in use
Option to set fallspeed
etc..


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

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