Raised This Month: $51 Target: $400
 12% 

[CS:GO] Drop Random Package


Post New Thread Reply   
 
Thread Tools Display Modes
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 11-20-2012 , 23:08   Re: [CS:GO] Drop Random Package
Reply With Quote #11

nope, servers are still crashing

im gonna unload this plugin for now
__________________
PresidentEvil is offline
darkranger
Senior Member
Join Date: Apr 2006
Location: dod_hinterland
Old 11-21-2012 , 11:27   Re: [CS:GO] Drop Random Package
Reply With Quote #12

Quote:
Originally Posted by PresidentEvil View Post
nope, servers are still crashing

im gonna unload this plugin for now

sorry to hear that it is not running for you.
darkranger is offline
darkranger
Senior Member
Join Date: Apr 2006
Location: dod_hinterland
Old 11-21-2012 , 12:02   Re: [CS:GO] Drop Random Package
Reply With Quote #13

i have found a little bug in precaching the model no. 6 & 7.
i have fixed this here: DOWNLOAD VERSION 1.9

please try...
darkranger is offline
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 11-21-2012 , 16:23   Re: [CS:GO] Drop Random Package
Reply With Quote #14

still no, server crashed right when the player picked up the mushroom
__________________

Last edited by PresidentEvil; 11-21-2012 at 16:46.
PresidentEvil is offline
darkranger
Senior Member
Join Date: Apr 2006
Location: dod_hinterland
Old 11-22-2012 , 02:40   Re: [CS:GO] Drop Random Package
Reply With Quote #15

it seems you use the mushroom for the healthpack.
have you tried another model(e.g. life-ring) for healthpack?

or set the healthcounter to 200 to test if it crashes with othe models!

it looks like when you touch the mushroom and the plugin will give you health, it crashes.
i think it has nothing to do with the model itself!

try lowering the the max ammount of health and the ammount a player becomes to the standard vars.
darkranger is offline
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 11-22-2012 , 16:22   Re: [CS:GO] Drop Random Package
Reply With Quote #16

yes thats exactly what happened in the last crash, I died and saw a player going over to the mushroom and as soon as he touched it everything froze and then crashed

ill try another model, perhaps the chicken model since its a default model in csgo

and what do you mean by " set the healthcounter to 200" ? do you mean the "max. Amount of HP a Player can have to pickup a Healthpack" or "Amount of HP to add to a player when pick up a Healthpack"


heres what I have the cfg set as:

Code:
// This file was auto-generated by SourceMod (v1.5.0-dev+3687)
// ConVars for plugin "csgo_drop_random_package_1.9.smx"


// max. Amount of HP a Player can have to pickup a Healthpack
// -
// Default: "200"
// Minimum: "100.000000"
// Maximum: "600.000000"
csgo_drop_health_maximum "600"

// Enable (1) or disable(0) Drop a HEgrenade with Health & Speed Pack
// -
// Default: "0"
csgo_drop_random_HEgrenade "0"

// <#> = Amount of HP to add to a player when pick up a Healthpack
// -
// Default: "40"
// Minimum: "5.000000"
// Maximum: "300.000000"
csgo_drop_random_health_amount "200"

// <#> = number of seconds a dropped Package stays on the map
// -
// Default: "20"
// Minimum: "10.000000"
// Maximum: "60.000000"
csgo_drop_random_lifetime "10"

// Enable(1) or disable(0) message when a Pack was dropped
// -
// Default: "0"
csgo_drop_random_message_dropped "0"

// Enable (1) or disable(0) message when Pickup a Pack
// -
// Default: "1"
csgo_drop_random_message_pickup "1"

// Model for Grenade:0=ChiantiBottle;1=chicken;2=LifeRing;3=MushroomSmall;4=MushroomLarge;5=HEGrenade;6=CardBoard;7=Skull
// -
// Default: "6"
// Minimum: "0.000000"
// Maximum: "7.000000"
csgo_drop_random_model_grenade "6"

// Model for Health:0=ChiantiBottle;1=chicken;2=LifeRing;3=MushroomSmall;4=MushroomLarge;5=HEGrenade;6=CardBoard;7=Skull
// -
// Default: "4"
// Minimum: "0.000000"
// Maximum: "7.000000"
csgo_drop_random_model_health "1"

// Model for Speed:0=ChiantiBottle;1=chicken;2=LifeRing;3=MushroomSmall;4=MushroomLarge;5=HEGrenade;6=CardBoard;7=Skull
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "7.000000"
csgo_drop_random_model_speed "0"

// Enable (1) or disable(0) Player Model change when pickup a Speedpack
// -
// Default: "0"
csgo_drop_random_own_model "0"

// Enable (1) or disable(0) your own PickUp Soundfile
// -
// Default: "0"
csgo_drop_random_own_pickup_sound "1"

// Own Sound played when Pickup Health or Speed(must be in a folder inside the sound/music folder & MP3!)
// -
// Default: "music/csgo_drop/mario_powerup.mp3"
csgo_drop_random_pickup_sound "music/csgo_drop/mario_powerup.mp3"

// Speed for the Player when picking up a Pack
// -
// Default: "1.5"
// Minimum: "1.000000"
// Maximum: "2.000000"
csgo_drop_random_speed "2.0"

// drop 2 HEgreandes every X deaths! 0=disable - if greater 0 random is disabled! use uneven numbers! and dont use same numbers!
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "200.000000"
csgo_drop_random_xgrenade_counter "7"

// drop a Health Package every X deaths! 0=disable - if greater 0 random is disabled! use uneven numbers! and dont use same numbers!
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "200.000000"
csgo_drop_random_xhealth_counter "3"

// drop a Speed Package every X deaths! 0=disable - if greater 0 random is disabled! use uneven numbers! and dont use same numbers!
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "200.000000"
csgo_drop_random_xspeed_counter "5"
__________________

Last edited by PresidentEvil; 11-22-2012 at 16:27.
PresidentEvil is offline
darkranger
Senior Member
Join Date: Apr 2006
Location: dod_hinterland
Old 11-22-2012 , 16:39   Re: [CS:GO] Drop Random Package
Reply With Quote #17

set:

csgo_drop_health_maximum "200"
csgo_drop_random_health_amount "50"


i have tested it excesive today with 10 bots and every death a pack will drop.
tested it with your settings and it never crashes.

so, sorry to say, but i think its another plugin in combination what causes your crashes!

maybe the plugin [THC RPG] Total HardCore RPG ??

Last edited by darkranger; 11-22-2012 at 16:41.
darkranger is offline
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 11-22-2012 , 16:48   Re: [CS:GO] Drop Random Package
Reply With Quote #18

yea its still crashing,

I like this plugin, but being an RPG server I need the rpg plugins more

thanks for your help though
__________________
PresidentEvil is offline
darkranger
Senior Member
Join Date: Apr 2006
Location: dod_hinterland
Old 11-23-2012 , 02:28   Re: [CS:GO] Drop Random Package
Reply With Quote #19

Quote:
Originally Posted by PresidentEvil View Post
yea its still crashing,
I like this plugin, but being an RPG server I need the rpg plugins more
thanks for your help though
i didnt know if its the RPG plugin, but my other plugin CSGO Drop random Health
is on the same basis as this one, and it runs on 30 servers.

some part would be interesting for me! is it the health, the speed or the hegrenades that causes problems, or all ?

simply set
csgo_drop_random_xhealth_counter "300"
csgo_drop_random_xspeed_counter "3"
csgo_drop_random_xgrenade_counter "10"
darkranger is offline
mickael002
Senior Member
Join Date: Jul 2010
Old 12-16-2012 , 10:04   Re: [CS:GO] Drop Random Package
Reply With Quote #20

Works on counter strike source ?
mickael002 is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 22:55.


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