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

Showing results 1 to 25 of 500
Search took 0.02 seconds.
Search: Posts Made By: nikhilgupta345
Forum: Approved Plugins 02-26-2017, 16:11
Replies: 9
Views: 19,794
Posted By nikhilgupta345
Re: Voice Radius

Then don't use it.
Forum: New Plugin Submissions 12-22-2013, 16:30
Replies: 33
Views: 14,009
Posted By nikhilgupta345
Re: Custom Rang Info (1.0.0 - 22.12.2013)

Pretty cool, I was unaware you could put special characters in CS names.
Forum: Off-Topic 12-18-2013, 17:35
Replies: 8
Views: 1,868
Posted By nikhilgupta345
Re: Java help

String input = JOptionPane.showInputDialog("Please input a string.");
String[] arrayOfWords = input.split(" ");
System.out.println("First word: " + arrayOfWords[0] + " Last word: " +...
Forum: Off-Topic 12-16-2013, 20:57
Replies: 8
Views: 1,868
Posted By nikhilgupta345
Re: Java help

String s = "This is a string";
String[] splitString = s.split();
// splitString = {"This", "is", "a", "string"}
String firstWord = splitString[0];
String lastWord = splitString[splitString.length...
Forum: Off-Topic 12-14-2013, 11:50
Replies: 8
Views: 1,868
Posted By nikhilgupta345
Re: Java help

Look up the String split() function: it splits a string into an array of smaller strings, based on a certain delimiter (basically where you want to separate the strings from). You can make it so that...
Forum: Translation Request 11-16-2013, 12:27
Replies: 5
Views: 1,987
Posted By nikhilgupta345
Quick translation request for AMX Super 5.0

Hey guys, just need translations of a single line for the upcoming AMX Super release.


[en]
AMXSUPER_SET = Set $%s


Thanks.
Forum: Scripting Help 07-29-2013, 18:46
Replies: 7
Views: 1,857
Posted By nikhilgupta345
Forum: Scripting Help 07-28-2013, 12:46
Replies: 7
Views: 1,857
Posted By nikhilgupta345
Forum: Scripting Help 07-27-2013, 14:45
Replies: 7
Views: 1,857
Posted By nikhilgupta345
Re: Voting: pick random options from the tied options

The list of all ties are going to be contained in the array aTies. iWinner is the index of either the winning option or of the randomly chosen option of the ties.


public CountVotes()
{
new...
Forum: Scripting Help 07-14-2013, 12:34
Replies: 17
Views: 3,275
Posted By nikhilgupta345
Re: Reliable Channel Overfow

Nope, just this plugin. Nothing else is balancing teams. mp_autoteambalance is set to 0 in server.cfg and nothing else sets it to 1.
Forum: Scripting Help 07-14-2013, 12:27
Replies: 17
Views: 3,275
Posted By nikhilgupta345
Re: Reliable Channel Overfow

Seems like it's more likely to occur at beginning of rounds.
Forum: Scripting Help 07-14-2013, 12:10
Replies: 17
Views: 3,275
Posted By nikhilgupta345
Re: Reliable Channel Overfow

Well the changing teams through the plugin doesn't do anything on it's own except for changing teams. It only sets their models at the beginning of the round, and not more than once. I believe the...
Forum: Scripting Help 07-14-2013, 12:02
Replies: 17
Views: 3,275
Posted By nikhilgupta345
Re: Reliable Channel Overfow

Eh, turns out it was already set to 0 :/
Forum: Scripting Help 07-14-2013, 11:55
Replies: 17
Views: 3,275
Posted By nikhilgupta345
Re: Reliable Channel Overfow

Are you talking about mp_autoteambalance?
Forum: Scripting Help 07-14-2013, 11:40
Replies: 17
Views: 3,275
Posted By nikhilgupta345
Reliable Channel Overfow

For some reason this plugin is causing players to be kicked with a reliable channel overflow, and it seems that it may be from the laser and the messages it sends. But is there a way to fix this...
Forum: Suggestions / Requests 07-13-2013, 16:59
Replies: 9
Views: 3,244
Posted By nikhilgupta345
Re: Knife Exp Mod Request

You have to have someone make it for you, either by paying them or having them make it for you on their own time.
Forum: Scripting Help 07-11-2013, 11:55
Replies: 8
Views: 1,500
Posted By nikhilgupta345
Re: hide CT & auto option choosteam

I think you can completely block that menu from showing up and create your own menu with only the terrorist and spectator options. Look at Team Join Management by Exolent (I think he blocks these...
Forum: Scripting Help 03-29-2013, 12:02
Replies: 5
Views: 1,293
Posted By nikhilgupta345
Re: Strange Angle values

Then I would assume the values of the angles range from [-PI, PI], rather than [0, 2PI].
Forum: Unapproved/Old Plugins 01-27-2013, 10:10
Replies: 13
Views: 6,236
Posted By nikhilgupta345
Re: //*--[JailBreak Mod]--*//

Loled at the wrong answers for the simple "Random Equations" that this plugin has.
Forum: Unapproved/Old Plugins 12-05-2012, 21:56
Replies: 9
Views: 9,162
Posted By nikhilgupta345
Re: Jailbreak Day Menu [Recoded]

Excuse me?

First, it's H3avY Ra1n, not acid rain (or you can put nikhilgupta345), as I'm H3avY Ra1n. Second, you should put which plugins you combined together. Three, you have not changed enough...
Forum: Scripting Help 11-16-2012, 17:36
Replies: 7
Views: 1,344
Posted By nikhilgupta345
Re: Need some help with NVAULT

If you like the nVault style of coding, use this: http://forums.alliedmods.net/showthread.php?t=146849

Then you don't have to deal with all the queries yourself.
Forum: Scripting Help 11-10-2012, 11:40
Replies: 5
Views: 1,386
Posted By nikhilgupta345
Re: Invalid cellvector in ArrayGetString

If you do the ++ after the variable, then it would do the < check BEFORE adding 1 to the variable. Putting ++ before the variable first adds 1 to the variable, AND THEN does the check.
Forum: Scripting Help 11-10-2012, 09:58
Replies: 5
Views: 1,386
Posted By nikhilgupta345
Re: Invalid cellvector in ArrayGetString

if( g_ArrId[ id ] ++ >= g_TotalMessages )


:arrow:


if( ++g_ArrId[ id ] >= g_TotalMessages )
Forum: New Plugin Submissions 10-21-2012, 09:49
Replies: 226
Views: 131,749
Posted By nikhilgupta345
Re: JailBreak Gang System

That would take too long and it's not worth it.
Forum: Suggestions / Requests 10-18-2012, 19:16
Replies: 14
Views: 1,839
Posted By nikhilgupta345
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT -4. The time now is 14:41.


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