Raised This Month: $32 Target: $400
 8% 

[L4D,L4D2,TF2,CSGO] NativeVotes (v0.8.3, 2014-10-16)


Post New Thread Reply   
 
Thread Tools Display Modes
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 02-21-2013 , 22:41   Re: [L4D,L4D2,TF2,CSGO] NativeVotes [Beta] (v0.6.1, 2013-02-11)
Reply With Quote #11

Quote:
Originally Posted by alongub View Post
L485-486:

Code:
new num_items = 1;
for (new i = 1; i < num_items; i++)
{
What?
Good catch, the i < num_items is supposed to be i < num_votes.

I finally just tossed this plugin (and the latest MapChooser Extended) up on RUGC_Midwest today (despite them hating the F1-F5 voting) and ran into an issue where in a vote where there were only 2 maps had some weirdness going on with its winner. I'm pretty sure this error explains what happened.

Actually, I'm glad you caught that, because looking through my log files didn't give me any clue as to why I was getting an empty item back as the winner.

Quote:
Originally Posted by alongub View Post
L836:

Code:
if (clients[i] < 1 || clients[i] > MaxClients || IsFakeClient(clients[i]) || !IsClientInGame(clients[i]))
It's probably better to check if the client is in-game before calling IsFakeClient:

Code:
if (clients[i] < 1 || clients[i] > MaxClients || !IsClientInGame(clients[i]) || IsFakeClient(clients[i]))
Yup, you're right. Luckily, this is just checking that the client list passed from the plugin doesn't contain any bad players; the plugin should have already checked and made sure the client list it passed in is correct, so it being wrong isn't as serious as you'd think.

Fixed anyway.

So, here's 0.6.2. I'll do a full repackage of the source and plugin soon, although the source alone can always be retrieved from the tags view in GitHub.

Edit: Actually, I just realized this doesn't fix my problem after all, because I was using an advanced callback which starts at line 514. Back to the drawing board, I guess.
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 02-21-2013 at 23:04.
Powerlord is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 02-21-2013 , 23:06   Re: [L4D,L4D2,TF2,CSGO] NativeVotes [Beta] (v0.6.1, 2013-02-11)
Reply With Quote #12

I found another issue while I was looking through the code. The loop between 1029 and 1037 is supposed to create a gapless array numbered 0 through num_clients. However, what it's actually doing to just copying the ClientVotes values over to the exact same spot, but in a 2D array.

On a full server, this also walks off the end of the array.

Having said that, the voting issue I had earlier shouldn't have been affected by this, so I'm still looking through the code.

I'm holding off on releasing 0.6.2 until I can figure out what's going on with the votes.
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 02-21-2013 at 23:08.
Powerlord is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 02-22-2013 , 15:52   Re: [L4D,L4D2,TF2,CSGO] NativeVotes [Beta] (v0.6.1, 2013-02-11)
Reply With Quote #13

I haven't been able to track down the bug I was seeing, but it may have been a side effect of the previous bugs. Here's a new 0.6.2 release, with one added change: The Data_GetItemInfo and Data_GetDisplayInfo now exit immediately if the position is past the max allowed items.

It fixes the 3 previously mentioned bugs, too.

I'll have to do more testing to see if I'm still getting the weird blank winner bug.
Attached Files
File Type: smx nativevotes.smx (32.4 KB, 202 views)
File Type: sp Get Plugin or Get Source (nativevotes.sp - 141 views - 43.1 KB)
File Type: sp Get Plugin or Get Source (data-keyvalues.sp - 459 views - 7.6 KB)
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 02-22-2013 at 16:19.
Powerlord is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 02-22-2013 , 16:53   Re: [L4D,L4D2,TF2,CSGO] NativeVotes [Beta] (v0.6.1, 2013-02-11)
Reply With Quote #14

Found a new logic bug: When a player disconnected, their vote wasn't cleared. Here's 0.6.3 that should fix this issue.
Attached Files
File Type: sp Get Plugin or Get Source (nativevotes.sp - 172 views - 43.5 KB)
File Type: smx nativevotes.smx (32.6 KB, 210 views)
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 02-22-2013 at 16:54.
Powerlord is offline
vitorhnn
Junior Member
Join Date: Dec 2012
Location: Rio de Janeiro, Brazil
Old 02-22-2013 , 17:02   Re: [L4D,L4D2,TF2,CSGO] NativeVotes [Beta] (v0.6.1, 2013-02-11)
Reply With Quote #15

Just throwing some of the stuff that shows up on my error.log, using UMC3, Tiered Voting and NativeVotes 0.6.1

Code:
L 02/18/2013 - 23:29:03: SourceMod error session started
L 02/18/2013 - 23:29:03: Info (map "pl_badwater") (file "errors_20130218.log")
L 02/18/2013 - 23:29:03: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/18/2013 - 23:29:03: [SM] Native "Call_PushCell" reported: 
L 02/18/2013 - 23:29:03: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/18/2013 - 23:29:03: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/18/2013 - 23:35:28: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/18/2013 - 23:35:28: [SM] Native "Call_PushCell" reported: 
L 02/18/2013 - 23:35:28: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/18/2013 - 23:35:28: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/18/2013 - 23:50:31: [SM] Native "GetArrayString" reported: Invalid index 4 (count: 4)
L 02/18/2013 - 23:50:31: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/18/2013 - 23:50:31: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/18/2013 - 23:50:31: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/18/2013 - 23:50:31: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/18/2013 - 23:50:31: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/18/2013 - 23:50:31: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/18/2013 - 23:50:31: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/18/2013 - 23:50:31: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/18/2013 - 23:50:31: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/18/2013 - 23:50:31: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/18/2013 - 23:50:31: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/18/2013 - 23:55:38: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/18/2013 - 23:55:38: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/18/2013 - 23:55:38: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/18/2013 - 23:55:43: Error log file session closed.
L 02/19/2013 - 00:20:16: SourceMod error session started
L 02/19/2013 - 00:20:16: Info (map "pl_thundermountain") (file "errors_20130219.log")
L 02/19/2013 - 00:20:16: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/19/2013 - 00:20:16: [SM] Native "Call_PushCell" reported: 
L 02/19/2013 - 00:20:16: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/19/2013 - 00:20:16: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/19/2013 - 00:30:18: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/19/2013 - 00:30:18: [SM] Native "Call_PushCell" reported: 
L 02/19/2013 - 00:30:18: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/19/2013 - 00:30:18: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/19/2013 - 00:52:42: Error log file session closed.
L 02/19/2013 - 01:06:56: SourceMod error session started
L 02/19/2013 - 01:06:56: Info (map "plr_hightower") (file "errors_20130219.log")
L 02/19/2013 - 01:06:56: [SM] Native "GetArrayString" reported: Invalid index 4 (count: 4)
L 02/19/2013 - 01:06:56: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/19/2013 - 01:06:56: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/19/2013 - 01:06:56: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/19/2013 - 01:06:56: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/19/2013 - 01:06:56: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/19/2013 - 01:06:56: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/19/2013 - 01:06:56: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/19/2013 - 01:06:56: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/19/2013 - 01:06:56: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/19/2013 - 01:06:56: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/19/2013 - 01:06:56: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/19/2013 - 01:15:12: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/19/2013 - 01:15:12: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/19/2013 - 01:15:12: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/19/2013 - 01:15:15: Error log file session closed.
L 02/19/2013 - 01:54:06: SourceMod error session started
L 02/19/2013 - 01:54:06: Info (map "koth_badlands") (file "errors_20130219.log")
L 02/19/2013 - 01:54:06: [SM] Native "PushArrayCell" reported: Invalid Handle 0 (error: 4)
L 02/19/2013 - 01:54:06: [SM] Displaying call stack trace for plugin "umc-core.smx":
L 02/19/2013 - 01:54:06: [SM]   [0]  Line 827, /home/steell/sourcemod-ultimate-mapchooser/addons/sourcemod/scripting/include/umc_utils.inc::ArrayAppend()
L 02/19/2013 - 01:54:06: [SM]   [1]  Line 3633, umc-core.sp::AddToStorage()
L 02/19/2013 - 01:54:06: [SM]   [2]  Line 3658, umc-core.sp::ProcessVoteResults()
L 02/19/2013 - 01:54:06: [SM]   [3]  Line 1234, umc-core.sp::Native_UMCVoteManagerComplete()
L 02/19/2013 - 01:54:06: [SM] Native "UMC_VoteManagerVoteCompleted" reported: Error encountered while processing a dynamic native
L 02/19/2013 - 01:54:06: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/19/2013 - 01:54:06: [SM]   [0]  Line 248, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/19/2013 - 02:06:05: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/19/2013 - 02:06:05: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/19/2013 - 02:06:05: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/19/2013 - 02:06:06: Error log file session closed.
L 02/19/2013 - 14:12:37: SourceMod error session started
L 02/19/2013 - 14:12:37: Info (map "cp_granary") (file "errors_20130219.log")
L 02/19/2013 - 14:12:37: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/19/2013 - 14:12:37: [SM] Native "Call_PushCell" reported: 
L 02/19/2013 - 14:12:37: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/19/2013 - 14:12:37: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/19/2013 - 14:31:16: Error log file session closed.
L 02/19/2013 - 14:43:58: SourceMod error session started
L 02/19/2013 - 14:43:58: Info (map "ctf_sawmill") (file "errors_20130219.log")
L 02/19/2013 - 14:43:58: [umc-core.smx] VOTING: No map groups found in rotation. Vote menu was not built.
L 02/19/2013 - 14:51:38: Error log file session closed.
L 02/19/2013 - 15:16:40: SourceMod error session started
L 02/19/2013 - 15:16:40: Info (map "cp_foundry") (file "errors_20130219.log")
L 02/19/2013 - 15:16:40: [umc-core.smx] VOTING: No map groups found in rotation. Vote menu was not built.
L 02/19/2013 - 15:16:41: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/19/2013 - 15:16:41: [SM] Native "Call_PushCell" reported: 
L 02/19/2013 - 15:16:41: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/19/2013 - 15:16:41: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/19/2013 - 15:18:23: Error log file session closed.
L 02/19/2013 - 22:19:35: SourceMod error session started
L 02/19/2013 - 22:19:35: Info (map "koth_badlands") (file "errors_20130219.log")
L 02/19/2013 - 22:19:35: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/19/2013 - 22:19:35: [SM] Native "Call_PushCell" reported: 
L 02/19/2013 - 22:19:35: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/19/2013 - 22:19:35: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/19/2013 - 22:39:27: Error log file session closed.
L 02/19/2013 - 22:47:13: SourceMod error session started
L 02/19/2013 - 22:47:13: Info (map "cp_freight_final1") (file "errors_20130219.log")
L 02/19/2013 - 22:47:13: [SM] Native "GetArrayString" reported: Invalid index 5 (count: 5)
L 02/19/2013 - 22:47:13: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/19/2013 - 22:47:13: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/19/2013 - 22:47:13: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/19/2013 - 22:47:13: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/19/2013 - 22:47:13: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/19/2013 - 22:47:13: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/19/2013 - 22:47:13: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/19/2013 - 22:47:13: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/19/2013 - 22:47:13: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/19/2013 - 22:47:13: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/19/2013 - 22:47:13: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/19/2013 - 22:52:11: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/19/2013 - 22:52:11: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/19/2013 - 22:52:11: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/19/2013 - 22:52:14: Error log file session closed.
L 02/19/2013 - 23:42:42: SourceMod error session started
L 02/19/2013 - 23:42:42: Info (map "cp_mountainlab") (file "errors_20130219.log")
L 02/19/2013 - 23:42:42: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/19/2013 - 23:42:42: [SM] Native "Call_PushCell" reported: 
L 02/19/2013 - 23:42:42: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/19/2013 - 23:42:42: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/19/2013 - 23:52:40: Error log file session closed.
L 02/20/2013 - 00:04:22: SourceMod error session started
L 02/20/2013 - 00:04:22: Info (map "cp_foundry") (file "errors_20130220.log")
L 02/20/2013 - 00:04:22: [SM] Native "PushArrayCell" reported: Invalid Handle 0 (error: 4)
L 02/20/2013 - 00:04:22: [SM] Displaying call stack trace for plugin "umc-core.smx":
L 02/20/2013 - 00:04:22: [SM]   [0]  Line 827, /home/steell/sourcemod-ultimate-mapchooser/addons/sourcemod/scripting/include/umc_utils.inc::ArrayAppend()
L 02/20/2013 - 00:04:22: [SM]   [1]  Line 3633, umc-core.sp::AddToStorage()
L 02/20/2013 - 00:04:22: [SM]   [2]  Line 3658, umc-core.sp::ProcessVoteResults()
L 02/20/2013 - 00:04:22: [SM]   [3]  Line 1234, umc-core.sp::Native_UMCVoteManagerComplete()
L 02/20/2013 - 00:04:22: [SM] Native "UMC_VoteManagerVoteCompleted" reported: Error encountered while processing a dynamic native
L 02/20/2013 - 00:04:22: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 00:04:22: [SM]   [0]  Line 248, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/20/2013 - 00:13:46: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/20/2013 - 00:13:46: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 00:13:46: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/20/2013 - 00:13:47: Error log file session closed.
L 02/20/2013 - 01:01:55: SourceMod error session started
L 02/20/2013 - 01:01:55: Info (map "pl_badwater") (file "errors_20130220.log")
L 02/20/2013 - 01:01:55: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/20/2013 - 01:01:55: [SM] Native "Call_PushCell" reported: 
L 02/20/2013 - 01:01:55: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 01:01:55: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/20/2013 - 01:49:43: Error log file session closed.
L 02/20/2013 - 11:33:04: SourceMod error session started
L 02/20/2013 - 11:33:04: Info (map "pl_badwater") (file "errors_20130220.log")
L 02/20/2013 - 11:33:04: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/20/2013 - 11:33:04: [SM] Native "Call_PushCell" reported: 
L 02/20/2013 - 11:33:04: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 11:33:04: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/20/2013 - 11:33:07: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/20/2013 - 11:33:07: [SM] Native "Call_PushCell" reported: 
L 02/20/2013 - 11:33:07: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 11:33:07: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/20/2013 - 11:51:21: [SM] Native "GetArrayString" reported: Invalid index 4 (count: 4)
L 02/20/2013 - 11:51:21: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 11:51:21: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/20/2013 - 11:51:21: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/20/2013 - 11:51:21: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/20/2013 - 11:51:21: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 11:51:21: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/20/2013 - 11:51:21: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/20/2013 - 11:51:21: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/20/2013 - 11:51:21: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 11:51:21: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/20/2013 - 11:51:21: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/20/2013 - 11:55:26: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/20/2013 - 11:55:26: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 11:55:26: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/20/2013 - 11:55:28: Error log file session closed.
L 02/20/2013 - 13:33:02: SourceMod error session started
L 02/20/2013 - 13:33:02: Info (map "koth_harvest_final") (file "errors_20130220.log")
L 02/20/2013 - 13:33:02: [SM] Native "GetArrayString" reported: Invalid index 4 (count: 4)
L 02/20/2013 - 13:33:02: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 13:33:02: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/20/2013 - 13:33:02: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/20/2013 - 13:33:02: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/20/2013 - 13:33:02: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 13:33:02: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/20/2013 - 13:33:02: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/20/2013 - 13:33:02: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/20/2013 - 13:33:02: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 13:33:02: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/20/2013 - 13:33:02: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/20/2013 - 13:43:21: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/20/2013 - 13:43:21: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 13:43:21: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/20/2013 - 13:43:24: Error log file session closed.
L 02/20/2013 - 13:47:56: SourceMod error session started
L 02/20/2013 - 13:47:56: Info (map "cp_badlands") (file "errors_20130220.log")
L 02/20/2013 - 13:47:56: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/20/2013 - 13:47:56: [SM] Native "Call_PushCell" reported: 
L 02/20/2013 - 13:47:56: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 13:47:56: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/20/2013 - 13:56:08: Error log file session closed.
L 02/20/2013 - 14:45:41: SourceMod error session started
L 02/20/2013 - 14:45:41: Info (map "cp_gravelpit") (file "errors_20130220.log")
L 02/20/2013 - 14:45:41: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/20/2013 - 14:45:41: [SM] Native "Call_PushCell" reported: 
L 02/20/2013 - 14:45:41: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 14:45:41: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/20/2013 - 14:47:53: Error log file session closed.
L 02/20/2013 - 15:55:35: SourceMod error session started
L 02/20/2013 - 15:55:35: Info (map "pl_frontier_final") (file "errors_20130220.log")
L 02/20/2013 - 15:55:35: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/20/2013 - 15:55:35: [SM] Native "Call_PushCell" reported: 
L 02/20/2013 - 15:55:35: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 15:55:35: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/20/2013 - 16:18:22: Error log file session closed.
L 02/20/2013 - 16:54:20: SourceMod error session started
L 02/20/2013 - 16:54:20: Info (map "ctf_vitalism_b2") (file "errors_20130220.log")
L 02/20/2013 - 16:54:20: [SM] Native "PushArrayCell" reported: Invalid Handle 0 (error: 4)
L 02/20/2013 - 16:54:20: [SM] Displaying call stack trace for plugin "umc-core.smx":
L 02/20/2013 - 16:54:20: [SM]   [0]  Line 827, /home/steell/sourcemod-ultimate-mapchooser/addons/sourcemod/scripting/include/umc_utils.inc::ArrayAppend()
L 02/20/2013 - 16:54:20: [SM]   [1]  Line 3633, umc-core.sp::AddToStorage()
L 02/20/2013 - 16:54:20: [SM]   [2]  Line 3658, umc-core.sp::ProcessVoteResults()
L 02/20/2013 - 16:54:20: [SM]   [3]  Line 1234, umc-core.sp::Native_UMCVoteManagerComplete()
L 02/20/2013 - 16:54:20: [SM] Native "UMC_VoteManagerVoteCompleted" reported: Error encountered while processing a dynamic native
L 02/20/2013 - 16:54:20: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 16:54:20: [SM]   [0]  Line 248, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/20/2013 - 17:00:02: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/20/2013 - 17:00:02: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 17:00:02: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/20/2013 - 17:00:03: Error log file session closed.
L 02/20/2013 - 18:22:31: SourceMod error session started
L 02/20/2013 - 18:22:31: Info (map "cp_steel") (file "errors_20130220.log")
L 02/20/2013 - 18:22:31: [SM] Native "PushArrayCell" reported: Invalid Handle 0 (error: 4)
L 02/20/2013 - 18:22:31: [SM] Displaying call stack trace for plugin "umc-core.smx":
L 02/20/2013 - 18:22:31: [SM]   [0]  Line 827, /home/steell/sourcemod-ultimate-mapchooser/addons/sourcemod/scripting/include/umc_utils.inc::ArrayAppend()
L 02/20/2013 - 18:22:31: [SM]   [1]  Line 3633, umc-core.sp::AddToStorage()
L 02/20/2013 - 18:22:31: [SM]   [2]  Line 3658, umc-core.sp::ProcessVoteResults()
L 02/20/2013 - 18:22:31: [SM]   [3]  Line 1234, umc-core.sp::Native_UMCVoteManagerComplete()
L 02/20/2013 - 18:22:31: [SM] Native "UMC_VoteManagerVoteCompleted" reported: Error encountered while processing a dynamic native
L 02/20/2013 - 18:22:31: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 18:22:31: [SM]   [0]  Line 248, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/20/2013 - 18:24:02: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/20/2013 - 18:24:02: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 18:24:02: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/20/2013 - 18:24:05: Error log file session closed.
L 02/20/2013 - 19:42:14: SourceMod error session started
L 02/20/2013 - 19:42:14: Info (map "koth_pro_viaduct_rc3") (file "errors_20130220.log")
L 02/20/2013 - 19:42:14: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/20/2013 - 19:42:14: [SM] Native "Call_PushCell" reported: 
L 02/20/2013 - 19:42:14: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 19:42:14: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/20/2013 - 19:54:46: Error log file session closed.
L 02/20/2013 - 23:04:40: SourceMod error session started
L 02/20/2013 - 23:04:40: Info (map "pl_goldrush") (file "errors_20130220.log")
L 02/20/2013 - 23:04:40: [SM] Native "GetArrayString" reported: Invalid index 3 (count: 3)
L 02/20/2013 - 23:04:40: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 23:04:40: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/20/2013 - 23:04:40: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/20/2013 - 23:04:40: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/20/2013 - 23:04:40: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 23:04:40: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/20/2013 - 23:04:40: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/20/2013 - 23:04:40: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/20/2013 - 23:04:40: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 23:04:40: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/20/2013 - 23:04:40: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/20/2013 - 23:11:19: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/20/2013 - 23:11:19: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 23:11:19: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/20/2013 - 23:11:21: Error log file session closed.
L 02/20/2013 - 23:31:01: SourceMod error session started
L 02/20/2013 - 23:31:01: Info (map "plr_hightower") (file "errors_20130220.log")
L 02/20/2013 - 23:31:01: [SM] Native "GetArrayString" reported: Invalid index 3 (count: 3)
L 02/20/2013 - 23:31:01: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 23:31:01: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/20/2013 - 23:31:01: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/20/2013 - 23:31:01: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/20/2013 - 23:31:01: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 23:31:01: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/20/2013 - 23:31:01: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/20/2013 - 23:31:01: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/20/2013 - 23:31:01: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/20/2013 - 23:31:01: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/20/2013 - 23:31:01: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/20/2013 - 23:39:20: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/20/2013 - 23:39:20: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/20/2013 - 23:39:20: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/20/2013 - 23:39:22: Error log file session closed.
L 02/21/2013 - 00:27:18: SourceMod error session started
L 02/21/2013 - 00:27:18: Info (map "pl_barnblitz") (file "errors_20130221.log")
L 02/21/2013 - 00:27:18: [SM] Native "GetArrayString" reported: Invalid index 2 (count: 2)
L 02/21/2013 - 00:27:18: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 00:27:18: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/21/2013 - 00:27:18: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/21/2013 - 00:27:18: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/21/2013 - 00:27:18: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 00:27:18: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/21/2013 - 00:27:18: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/21/2013 - 00:27:18: [SM] Plugin encountered error 18: Heap memory leaked by native
L 02/21/2013 - 00:27:18: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 00:27:18: [SM]   [0]  Line 365, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_Vote()
L 02/21/2013 - 00:33:04: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/21/2013 - 00:33:04: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 00:33:04: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/21/2013 - 00:33:08: Error log file session closed.
L 02/21/2013 - 14:02:49: SourceMod error session started
L 02/21/2013 - 14:02:49: Info (map "plr_nightfall_final") (file "errors_20130221.log")
L 02/21/2013 - 14:02:49: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/21/2013 - 14:02:49: [SM] Native "Call_PushCell" reported: 
L 02/21/2013 - 14:02:49: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 14:02:49: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/21/2013 - 14:07:49: Error log file session closed.
L 02/21/2013 - 14:08:39: SourceMod error session started
L 02/21/2013 - 14:08:39: Info (map "plr_nightfall_final") (file "errors_20130221.log")
L 02/21/2013 - 14:08:39: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/21/2013 - 14:08:39: [SM] Native "Call_PushCell" reported: 
L 02/21/2013 - 14:08:39: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 14:08:39: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/21/2013 - 14:34:20: Error log file session closed.
L 02/21/2013 - 14:47:30: SourceMod error session started
L 02/21/2013 - 14:47:30: Info (map "koth_king") (file "errors_20130221.log")
L 02/21/2013 - 14:47:30: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/21/2013 - 14:47:30: [SM] Native "Call_PushCell" reported: 
L 02/21/2013 - 14:47:30: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 14:47:30: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/21/2013 - 15:00:54: Error log file session closed.
L 02/21/2013 - 16:35:02: SourceMod error session started
L 02/21/2013 - 16:35:02: Info (map "pl_badwater") (file "errors_20130221.log")
L 02/21/2013 - 16:35:02: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/21/2013 - 16:35:02: [SM] Native "Call_PushCell" reported: 
L 02/21/2013 - 16:35:02: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 16:35:02: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/21/2013 - 16:39:56: Error log file session closed.
L 02/21/2013 - 16:54:01: SourceMod error session started
L 02/21/2013 - 16:54:01: Info (map "koth_pro_viaduct_rc3") (file "errors_20130221.log")
L 02/21/2013 - 16:54:01: [SM] Native "GetArrayString" reported: Invalid index 4 (count: 4)
L 02/21/2013 - 16:54:01: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 16:54:01: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/21/2013 - 16:54:01: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/21/2013 - 16:54:01: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/21/2013 - 16:54:01: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 16:54:01: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/21/2013 - 16:54:01: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/21/2013 - 16:54:01: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/21/2013 - 16:54:01: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 16:54:01: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/21/2013 - 16:54:01: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/21/2013 - 17:02:13: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/21/2013 - 17:02:13: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 17:02:13: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/21/2013 - 17:02:16: Error log file session closed.
L 02/21/2013 - 17:53:28: SourceMod error session started
L 02/21/2013 - 17:53:28: Info (map "pl_barnblitz") (file "errors_20130221.log")
L 02/21/2013 - 17:53:28: [SM] Native "PushArrayCell" reported: Invalid Handle 0 (error: 4)
L 02/21/2013 - 17:53:28: [SM] Displaying call stack trace for plugin "umc-core.smx":
L 02/21/2013 - 17:53:28: [SM]   [0]  Line 827, /home/steell/sourcemod-ultimate-mapchooser/addons/sourcemod/scripting/include/umc_utils.inc::ArrayAppend()
L 02/21/2013 - 17:53:28: [SM]   [1]  Line 3633, umc-core.sp::AddToStorage()
L 02/21/2013 - 17:53:28: [SM]   [2]  Line 3658, umc-core.sp::ProcessVoteResults()
L 02/21/2013 - 17:53:28: [SM]   [3]  Line 1234, umc-core.sp::Native_UMCVoteManagerComplete()
L 02/21/2013 - 17:53:28: [SM] Native "UMC_VoteManagerVoteCompleted" reported: Error encountered while processing a dynamic native
L 02/21/2013 - 17:53:28: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 17:53:28: [SM]   [0]  Line 248, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/21/2013 - 18:02:13: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/21/2013 - 18:02:13: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 18:02:13: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/21/2013 - 18:02:16: Error log file session closed.
L 02/21/2013 - 19:06:06: SourceMod error session started
L 02/21/2013 - 19:06:06: Info (map "pl_badwater") (file "errors_20130221.log")
L 02/21/2013 - 19:06:06: [SM] Native "GetArrayString" reported: Invalid index 4 (count: 4)
L 02/21/2013 - 19:06:06: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 19:06:06: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/21/2013 - 19:06:06: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/21/2013 - 19:06:06: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/21/2013 - 19:06:06: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 19:06:06: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/21/2013 - 19:06:06: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/21/2013 - 19:06:06: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/21/2013 - 19:06:06: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 19:06:06: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/21/2013 - 19:06:06: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/21/2013 - 19:08:55: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/21/2013 - 19:08:55: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 19:08:55: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/21/2013 - 19:08:58: Error log file session closed.
L 02/21/2013 - 19:12:21: SourceMod error session started
L 02/21/2013 - 19:12:21: Info (map "koth_king") (file "errors_20130221.log")
L 02/21/2013 - 19:12:21: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/21/2013 - 19:12:21: [SM] Native "Call_PushCell" reported: 
L 02/21/2013 - 19:12:21: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 19:12:21: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/21/2013 - 19:23:34: [SM] Native "GetArrayString" reported: Invalid index 3 (count: 3)
L 02/21/2013 - 19:23:34: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 19:23:34: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/21/2013 - 19:23:34: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/21/2013 - 19:23:34: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/21/2013 - 19:23:34: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 19:23:34: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/21/2013 - 19:23:34: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/21/2013 - 19:23:34: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/21/2013 - 19:23:34: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 19:23:34: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/21/2013 - 19:23:34: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/21/2013 - 19:24:10: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/21/2013 - 19:24:10: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 19:24:10: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/21/2013 - 19:38:14: Error log file session closed.
L 02/21/2013 - 21:30:57: SourceMod error session started
L 02/21/2013 - 21:30:57: Info (map "koth_lakeside_final") (file "errors_20130221.log")
L 02/21/2013 - 21:30:57: [SM] Native "GetArrayString" reported: Invalid index 4 (count: 4)
L 02/21/2013 - 21:30:57: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 21:30:57: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/21/2013 - 21:30:57: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/21/2013 - 21:30:57: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/21/2013 - 21:30:57: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 21:30:57: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/21/2013 - 21:30:57: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/21/2013 - 21:30:57: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/21/2013 - 21:30:57: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 21:30:57: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/21/2013 - 21:30:57: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/21/2013 - 21:43:59: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/21/2013 - 21:43:59: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 21:43:59: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/21/2013 - 21:44:03: Error log file session closed.
L 02/21/2013 - 22:26:18: SourceMod error session started
L 02/21/2013 - 22:26:18: Info (map "plr_hightower") (file "errors_20130221.log")
L 02/21/2013 - 22:26:18: [SM] Native "GetArrayString" reported: Invalid index 4 (count: 4)
L 02/21/2013 - 22:26:18: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 22:26:18: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/21/2013 - 22:26:18: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/21/2013 - 22:26:18: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/21/2013 - 22:26:18: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 22:26:18: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/21/2013 - 22:26:18: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/21/2013 - 22:26:18: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/21/2013 - 22:26:18: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/21/2013 - 22:26:18: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/21/2013 - 22:26:18: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/21/2013 - 22:43:12: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/21/2013 - 22:43:12: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/21/2013 - 22:43:12: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/21/2013 - 22:43:13: Error log file session closed.
L 02/22/2013 - 00:07:01: SourceMod error session started
L 02/22/2013 - 00:07:01: Info (map "pl_badwater") (file "errors_20130222.log")
L 02/22/2013 - 00:07:01: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/22/2013 - 00:07:01: [SM] Native "Call_PushCell" reported: 
L 02/22/2013 - 00:07:01: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/22/2013 - 00:07:01: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/22/2013 - 00:23:12: Error log file session closed.
L 02/22/2013 - 11:15:38: SourceMod error session started
L 02/22/2013 - 11:15:38: Info (map "koth_king") (file "errors_20130222.log")
L 02/22/2013 - 11:15:38: [SM] Native "PushArrayCell" reported: Invalid Handle 0 (error: 4)
L 02/22/2013 - 11:15:38: [SM] Displaying call stack trace for plugin "umc-core.smx":
L 02/22/2013 - 11:15:38: [SM]   [0]  Line 827, /home/steell/sourcemod-ultimate-mapchooser/addons/sourcemod/scripting/include/umc_utils.inc::ArrayAppend()
L 02/22/2013 - 11:15:38: [SM]   [1]  Line 3633, umc-core.sp::AddToStorage()
L 02/22/2013 - 11:15:38: [SM]   [2]  Line 3658, umc-core.sp::ProcessVoteResults()
L 02/22/2013 - 11:15:38: [SM]   [3]  Line 1234, umc-core.sp::Native_UMCVoteManagerComplete()
L 02/22/2013 - 11:15:38: [SM] Native "UMC_VoteManagerVoteCompleted" reported: Error encountered while processing a dynamic native
L 02/22/2013 - 11:15:38: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/22/2013 - 11:15:38: [SM]   [0]  Line 248, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/22/2013 - 11:26:58: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/22/2013 - 11:26:58: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/22/2013 - 11:26:58: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/22/2013 - 11:27:02: Error log file session closed.
L 02/22/2013 - 11:52:23: SourceMod error session started
L 02/22/2013 - 11:52:23: Info (map "cp_granary") (file "errors_20130222.log")
L 02/22/2013 - 11:52:23: [SM] Native "PushArrayCell" reported: Invalid Handle 0 (error: 4)
L 02/22/2013 - 11:52:23: [SM] Displaying call stack trace for plugin "umc-core.smx":
L 02/22/2013 - 11:52:23: [SM]   [0]  Line 827, /home/steell/sourcemod-ultimate-mapchooser/addons/sourcemod/scripting/include/umc_utils.inc::ArrayAppend()
L 02/22/2013 - 11:52:23: [SM]   [1]  Line 3633, umc-core.sp::AddToStorage()
L 02/22/2013 - 11:52:23: [SM]   [2]  Line 3658, umc-core.sp::ProcessVoteResults()
L 02/22/2013 - 11:52:23: [SM]   [3]  Line 1234, umc-core.sp::Native_UMCVoteManagerComplete()
L 02/22/2013 - 11:52:23: [SM] Native "UMC_VoteManagerVoteCompleted" reported: Error encountered while processing a dynamic native
L 02/22/2013 - 11:52:23: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/22/2013 - 11:52:23: [SM]   [0]  Line 248, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/22/2013 - 11:58:10: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/22/2013 - 11:58:10: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/22/2013 - 11:58:10: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/22/2013 - 11:58:15: Error log file session closed.
L 02/22/2013 - 13:33:56: SourceMod error session started
L 02/22/2013 - 13:33:56: Info (map "pl_frontier_final") (file "errors_20130222.log")
L 02/22/2013 - 13:33:56: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/22/2013 - 13:33:56: [SM] Native "Call_PushCell" reported: 
L 02/22/2013 - 13:33:56: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/22/2013 - 13:33:56: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/22/2013 - 13:58:47: Error log file session closed.
L 02/22/2013 - 14:19:18: SourceMod error session started
L 02/22/2013 - 14:19:18: Info (map "koth_lakeside_final") (file "errors_20130222.log")
L 02/22/2013 - 14:19:18: [SM] Native "GetArrayString" reported: Invalid index 4 (count: 4)
L 02/22/2013 - 14:19:18: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/22/2013 - 14:19:18: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/22/2013 - 14:19:18: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/22/2013 - 14:19:18: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/22/2013 - 14:19:18: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/22/2013 - 14:19:18: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/22/2013 - 14:19:18: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/22/2013 - 14:19:18: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/22/2013 - 14:19:18: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/22/2013 - 14:19:18: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/22/2013 - 14:19:18: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/22/2013 - 14:29:25: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/22/2013 - 14:29:25: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/22/2013 - 14:29:25: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/22/2013 - 14:29:29: Error log file session closed.
L 02/22/2013 - 15:15:41: SourceMod error session started
L 02/22/2013 - 15:15:41: Info (map "cp_steel") (file "errors_20130222.log")
L 02/22/2013 - 15:15:41: [SM] Plugin encountered error 4: Invalid parameter or parameter type
L 02/22/2013 - 15:15:41: [SM] Native "Call_PushCell" reported: 
L 02/22/2013 - 15:15:41: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/22/2013 - 15:15:41: [SM]   [0]  Line 219, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Command_CallVote()
L 02/22/2013 - 15:31:54: Error log file session closed.
L 02/22/2013 - 15:43:19: SourceMod error session started
L 02/22/2013 - 15:43:19: Info (map "cp_badlands") (file "errors_20130222.log")
L 02/22/2013 - 15:43:19: [SM] Native "GetArrayString" reported: Invalid index 4 (count: 4)
L 02/22/2013 - 15:43:19: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/22/2013 - 15:43:19: [SM]   [0]  Line 53, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes/data-keyvalues.sp::Data_GetItemInfo()
L 02/22/2013 - 15:43:19: [SM]   [1]  Line 1336, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::Native_GetItem()
L 02/22/2013 - 15:43:19: [SM] Native "NativeVotes_GetItem" reported: Error encountered while processing a dynamic native
L 02/22/2013 - 15:43:19: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/22/2013 - 15:43:19: [SM]   [0]  Line 276, umc-nativevotes.sp::ConvertVoteResults()
L 02/22/2013 - 15:43:19: [SM]   [1]  Line 245, umc-nativevotes.sp::Handle_MapVoteResults()
L 02/22/2013 - 15:43:19: [SM] Plugin encountered error 13: Heap went below heap boundary
L 02/22/2013 - 15:43:19: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/22/2013 - 15:43:19: [SM]   [0]  Line 779, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::EndVoting()
L 02/22/2013 - 15:43:19: [SM]   [1]  Line 986, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::DisplayTimer()
L 02/22/2013 - 15:45:33: [SM] Native "NativeVotes_Cancel" reported: No vote is in progress
L 02/22/2013 - 15:45:33: [SM] Displaying call stack trace for plugin "umc-nativevotes.smx":
L 02/22/2013 - 15:45:33: [SM]   [0]  Line 195, umc-nativevotes.sp::VM_CancelVote()
L 02/22/2013 - 15:45:34: Error log file session closed.
What tends to actually happen is that the vote shows up, but doesn't finish, and if someone didn't vote, the votemenu doesn't disappear.

Last edited by vitorhnn; 02-22-2013 at 17:11.
vitorhnn is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 02-22-2013 , 17:22   Re: [L4D,L4D2,TF2,CSGO] NativeVotes [Beta] (v0.6.1, 2013-02-11)
Reply With Quote #16

Quote:
Originally Posted by vitorhnn View Post
Just throwing some of the stuff that shows up on my error.log, using UMC3, Tiered Voting and NativeVotes 0.6.1
Logs are always useful.

Call_PushCell - I updated two of the places that referenced callvote of a specific type and completely missed the third. Whoops. This is fixed in my dev copy on GitHub, but I'm looking into the other errors before posting a new version.

GetArrayString - As soon as I looked at the logic for this, I saw an error where ">" was used instead of ">=". However, I think there's more to this issue than that... I'll have to look through umc-nativevotes to see if it calls NativeVotes_GetItemCount before trying to read the vote items. The >= thing is fixed in my dev copy on GitHub.

Plugin encountered error 13: Heap went below heap boundary - This may be related to the above error as it happened at the same time. We'll need to re-test this after the previous bugs are fixed. Edit: Actually, it may be caused by a bug I fixed in 0.6.2/0.6.3.

Native "NativeVotes_Cancel" reported: No vote is in progress - May also be related to the previous plugin errors, specifically the heap one (which probably auto-frees the handle).

I'm about to leave for a bit, so I'll have to look through the rest later, although it looks like a lot of the logs are these same errors repeating.
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 02-22-2013 at 17:28.
Powerlord is offline
vitorhnn
Junior Member
Join Date: Dec 2012
Location: Rio de Janeiro, Brazil
Old 02-22-2013 , 17:24   Re: [L4D,L4D2,TF2,CSGO] NativeVotes [Beta] (v0.6.1, 2013-02-11)
Reply With Quote #17

NativeVotes_Cancel is just me using umc_stopvote
vitorhnn is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 02-22-2013 , 20:47   Re: [L4D,L4D2,TF2,CSGO] NativeVotes [Beta] (v0.6.1, 2013-02-11)
Reply With Quote #18

OK, so I discovered a few other bugs while I was looking at the code. Here's 0.7.0 including a changelog:
  • Another callvote fix, this time due to a previous fix only being changed in two of three places.
  • GetItemInfo and GetItemDisplay were allowing scripts to walk past the end of the vote set.
  • Fixed issue with vote item count not being used when preparing vote results and instead using the array size.
  • Changed method for clearing vote counts. No longer resizes array, but instead sets all values to 0. Resizing caused the bug immediately before this.
  • Various vote counts are now correctly updated when a client disconnects.
  • Vote will now end if the last player whose vote was pending disconnects.
  • New method to update client count on server's votecontroller entity.
Attached Files
File Type: sp Get Plugin or Get Source (nativevotes.sp - 193 views - 43.4 KB)
File Type: sp Get Plugin or Get Source (data-keyvalues.sp - 429 views - 7.6 KB)
File Type: sp Get Plugin or Get Source (game.sp - 468 views - 40.4 KB)
File Type: smx nativevotes.smx (32.6 KB, 192 views)
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 02-22-2013 at 20:50.
Powerlord is offline
vitorhnn
Junior Member
Join Date: Dec 2012
Location: Rio de Janeiro, Brazil
Old 02-23-2013 , 12:34   Re: [L4D,L4D2,TF2,CSGO] NativeVotes [Beta] (v0.6.1, 2013-02-11)
Reply With Quote #19

New errors! I have some older ones, but I'm not exactly sure if they're from after I've updated.

Also, some players report not being able to vote (the menu shows up and everything, but f1-5 doesn't work), and I can confirm this.
Code:
L 02/23/2013 - 02:24:39: SourceMod error session started
L 02/23/2013 - 02:24:39: Info (map "koth_sawmill") (file "errors_20130223.log")
L 02/23/2013 - 02:24:39: [SM] Native "IsClientInVotePool" reported: No vote is in progress
L 02/23/2013 - 02:24:39: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/23/2013 - 02:24:39: [SM]   [0]  Line 205, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::OnClientDisconnect_Post()
L 02/23/2013 - 02:35:27: Error log file session closed.
L 02/23/2013 - 12:20:28: SourceMod error session started
L 02/23/2013 - 12:20:28: Info (map "ctf_turbine_pro_rc1") (file "errors_20130223.log")
L 02/23/2013 - 12:20:28: [SM] Native "IsClientInVotePool" reported: No vote is in progress
L 02/23/2013 - 12:20:28: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/23/2013 - 12:20:28: [SM]   [0]  Line 205, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::OnClientDisconnect_Post()
L 02/23/2013 - 12:20:30: [SM] Native "IsClientInVotePool" reported: No vote is in progress
L 02/23/2013 - 12:20:30: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/23/2013 - 12:20:30: [SM]   [0]  Line 205, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::OnClientDisconnect_Post()
L 02/23/2013 - 12:20:30: [SM] Native "IsClientInVotePool" reported: No vote is in progress
L 02/23/2013 - 12:20:30: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/23/2013 - 12:20:30: [SM]   [0]  Line 205, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::OnClientDisconnect_Post()
L 02/23/2013 - 12:33:34: Error log file session closed.
also, this happens, but no errors are showing up on the log:
Code:
L 02/23/2013 - 14:24:10: [umc-endvote.smx] Starting an end of map vote.
L 02/23/2013 - 14:24:10: [umc-core.smx] Initiating Vote Type: Stage 1 Tiered
L 02/23/2013 - 14:24:15: [umc-nativevotes.smx] DEBUG: Vote Cancelled
L 02/23/2013 - 14:24:15: [umc-nativevotes.smx] DEBUG: MenuAction_End
L 02/23/2013 - 14:34:49: [umc-randomcycle.smx] Attempting to set the next map to a random selection.
L 02/23/2013 - 14:34:49: [umc-core.smx] Setting nextmap to: pl_goldrush
L 02/23/2013 - 14:34:49: [umc-endvote.smx] End of map vote disabled.
L 02/23/2013 - 14:35:00: [umc-core.smx] ---------------------MAP CHANGE: pl_goldrush---------------------

Last edited by vitorhnn; 02-23-2013 at 12:42.
vitorhnn is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 02-23-2013 , 13:02   Re: [L4D,L4D2,TF2,CSGO] NativeVotes [Beta] (v0.6.1, 2013-02-11)
Reply With Quote #20

Quote:
Originally Posted by vitorhnn View Post
New errors! I have some older ones, but I'm not exactly sure if they're from after I've updated.

Also, some players report not being able to vote (the menu shows up and everything, but f1-5 doesn't work), and I can confirm this.
Code:
L 02/23/2013 - 02:24:39: SourceMod error session started
L 02/23/2013 - 02:24:39: Info (map "koth_sawmill") (file "errors_20130223.log")
L 02/23/2013 - 02:24:39: [SM] Native "IsClientInVotePool" reported: No vote is in progress
L 02/23/2013 - 02:24:39: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/23/2013 - 02:24:39: [SM]   [0]  Line 205, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::OnClientDisconnect_Post()
L 02/23/2013 - 02:35:27: Error log file session closed.
L 02/23/2013 - 12:20:28: SourceMod error session started
L 02/23/2013 - 12:20:28: Info (map "ctf_turbine_pro_rc1") (file "errors_20130223.log")
L 02/23/2013 - 12:20:28: [SM] Native "IsClientInVotePool" reported: No vote is in progress
L 02/23/2013 - 12:20:28: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/23/2013 - 12:20:28: [SM]   [0]  Line 205, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::OnClientDisconnect_Post()
L 02/23/2013 - 12:20:30: [SM] Native "IsClientInVotePool" reported: No vote is in progress
L 02/23/2013 - 12:20:30: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/23/2013 - 12:20:30: [SM]   [0]  Line 205, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::OnClientDisconnect_Post()
L 02/23/2013 - 12:20:30: [SM] Native "IsClientInVotePool" reported: No vote is in progress
L 02/23/2013 - 12:20:30: [SM] Displaying call stack trace for plugin "nativevotes.smx":
L 02/23/2013 - 12:20:30: [SM]   [0]  Line 205, D:\tf2server\plugins\nativevotes\addons\sourcemod\scripting\nativevotes.sp::OnClientDisconnect_Post()
L 02/23/2013 - 12:33:34: Error log file session closed.
also, this happens, but no errors are showing up on the log:
Code:
L 02/23/2013 - 14:24:10: [umc-endvote.smx] Starting an end of map vote.
L 02/23/2013 - 14:24:10: [umc-core.smx] Initiating Vote Type: Stage 1 Tiered
L 02/23/2013 - 14:24:15: [umc-nativevotes.smx] DEBUG: Vote Cancelled
L 02/23/2013 - 14:24:15: [umc-nativevotes.smx] DEBUG: MenuAction_End
L 02/23/2013 - 14:34:49: [umc-randomcycle.smx] Attempting to set the next map to a random selection.
L 02/23/2013 - 14:34:49: [umc-core.smx] Setting nextmap to: pl_goldrush
L 02/23/2013 - 14:34:49: [umc-endvote.smx] End of map vote disabled.
L 02/23/2013 - 14:35:00: [umc-core.smx] ---------------------MAP CHANGE: pl_goldrush---------------------
I see what's happening at line 205 (I called the SourceMod client check instead of the NativeVotes client check), but since that's in the middle of the disconnect action, it shouldn't be affecting other voters. However, in case it is.... here's 0.7.1 which fixes that issue.
Attached Files
File Type: smx nativevotes.smx (32.6 KB, 140 views)
File Type: sp Get Plugin or Get Source (nativevotes.sp - 187 views - 43.4 KB)
__________________
Not currently working on SourceMod plugin development.
Powerlord 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 03:32.


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