Login to ZARP
Username: Password: Remember me
  • Page:
  • 1
  • 2

TOPIC: Best gang on deathrun

Best gang on deathrun 6 years 2 weeks ago #889728

sorIe wrote:
fuck yall bitches sadboys best gang
  • Dewie
  • Dewie's Avatar
  • Offline
  • Expert Boarder
  • Stop.
  • Posts: 1243
  • Thanks received: 561
  • Karma: -4
Login or register to post a reply.
The following user(s) said Thank You: SorIe

Best gang on deathrun 6 years 2 weeks ago #889729

Ashur. wrote:
TheXnator wrote:
Ashur. wrote:
TheXnator wrote:
Nick0GR wrote:
Dauntless best gang what are you on about?

Etherious best gang
Sorry buddy, you're wrong


Do I have to hard code my gang to the top of the leaderboards? :P
go ahead, recode the entire gang system, because you were the ones that told us if you had to change the leaderboards to go off Upgrades and Loot instead of Loot you'd have to recode it completely :P :derp:

table.sort( TABLE, function( a, b ) return a.loot > b.loot end ) :shrug:
  • DEADMONSTOR
  • DEADMONSTOR's Avatar
  • Offline
  • Former Owner
  • ZARP VIP
  • Posts: 9276
  • Thanks received: 3799
  • Karma: 80
...
Login or register to post a reply.
The following user(s) said Thank You: Ashur

Best gang on deathrun 6 years 2 weeks ago #889737

DEADMONSTOR wrote:
Ashur. wrote:
TheXnator wrote:
Ashur. wrote:
TheXnator wrote:
Nick0GR wrote:
Dauntless best gang what are you on about?

Etherious best gang
Sorry buddy, you're wrong


Do I have to hard code my gang to the top of the leaderboards? :P
go ahead, recode the entire gang system, because you were the ones that told us if you had to change the leaderboards to go off Upgrades and Loot instead of Loot you'd have to recode it completely :P :derp:

table.sort( TABLE, function( a, b ) return a.loot > b.loot end ) :shrug:
tell xnator that cause he said he'll have to recode it
  • Ashur
  • Ashur's Avatar
  • Offline
  • Mythical Boarder
  • ZARP VIP
  • Legendary Member
  • Posts: 5568
  • Thanks received: 1276
  • Karma: -160
Login or register to post a reply.

Best gang on deathrun 6 years 2 weeks ago #889739

Warning: Spoiler! [ Click to expand ]


The code DEAD has given you is the code used. I did not say that I would have to recode it to go by upgrades rather than loot, I would just have to change the index it sorts by for that, but I am not going to make it sort by upgrades, but am rather plan to add another element to the gangs which will be the overall score of the gang, which will use an equation to base it on number of members, number of upgrades, level and amount of loot, and then it will order by that.
  • TheXnator
  • TheXnator's Avatar
  • Offline
  • Former Owner
  • ZARP VIP Golden Blue Badge
  • "Save the tears for when we win!"
  • Posts: 8122
  • Thanks received: 4300
  • Karma: -2023
Discord: thexnator

Former Community Owner: 2020-2022
Login or register to post a reply.

Best gang on deathrun 6 years 2 weeks ago #889744

TheXnator wrote:
Warning: Spoiler! [ Click to expand ]


The code DEAD has given you is the code used. I did not say that I would have to recode it to go by upgrades rather than loot, I would just have to change the index it sorts by for that, but I am not going to make it sort by upgrades, but am rather plan to add another element to the gangs which will be the overall score of the gang, which will use an equation to base it on number of members, number of upgrades, level and amount of loot, and then it will order by that.

Wouldnt this work
table.sort( TABLE, function( a, b ) 
	if a.level == b.level then 
		if a.upgrades == b.upgrades then 
			return a.loot > b.loot  
		else 
			return a.upgrades > b.upgrades 
		end  
	else 
		return a.level > b.level 
	end 
end )
  • DEADMONSTOR
  • DEADMONSTOR's Avatar
  • Offline
  • Former Owner
  • ZARP VIP
  • Posts: 9276
  • Thanks received: 3799
  • Karma: 80
...
Login or register to post a reply.

Best gang on deathrun 6 years 2 weeks ago #889748

DEADMONSTOR wrote:
TheXnator wrote:
Warning: Spoiler! [ Click to expand ]


The code DEAD has given you is the code used. I did not say that I would have to recode it to go by upgrades rather than loot, I would just have to change the index it sorts by for that, but I am not going to make it sort by upgrades, but am rather plan to add another element to the gangs which will be the overall score of the gang, which will use an equation to base it on number of members, number of upgrades, level and amount of loot, and then it will order by that.

Wouldnt this work
table.sort( TABLE, function( a, b ) 
	if a.level == b.level then 
		if a.upgrades == b.upgrades then 
			return a.loot > b.loot  
		else 
			return a.upgrades > b.upgrades 
		end  
	else 
		return a.level > b.level 
	end 
end )

You're not meant to tell them that I can do it relatively easily smh
  • TheXnator
  • TheXnator's Avatar
  • Offline
  • Former Owner
  • ZARP VIP Golden Blue Badge
  • "Save the tears for when we win!"
  • Posts: 8122
  • Thanks received: 4300
  • Karma: -2023
Discord: thexnator

Former Community Owner: 2020-2022
Login or register to post a reply.

Best gang on deathrun 6 years 2 weeks ago #889750

TheXnator wrote:
DEADMONSTOR wrote:
TheXnator wrote:
Warning: Spoiler! [ Click to expand ]


The code DEAD has given you is the code used. I did not say that I would have to recode it to go by upgrades rather than loot, I would just have to change the index it sorts by for that, but I am not going to make it sort by upgrades, but am rather plan to add another element to the gangs which will be the overall score of the gang, which will use an equation to base it on number of members, number of upgrades, level and amount of loot, and then it will order by that.

Wouldnt this work
table.sort( TABLE, function( a, b ) 
	if a.level == b.level then 
		if a.upgrades == b.upgrades then 
			return a.loot > b.loot  
		else 
			return a.upgrades > b.upgrades 
		end  
	else 
		return a.level > b.level 
	end 
end )

You're not meant to tell them that I can do it relatively easily smh
that's it buddy, demoted.
  • Ashur
  • Ashur's Avatar
  • Offline
  • Mythical Boarder
  • ZARP VIP
  • Legendary Member
  • Posts: 5568
  • Thanks received: 1276
  • Karma: -160
Login or register to post a reply.

Best gang on deathrun 6 years 2 weeks ago #889751

TheXnator wrote:
DEADMONSTOR wrote:
TheXnator wrote:
Warning: Spoiler! [ Click to expand ]


The code DEAD has given you is the code used. I did not say that I would have to recode it to go by upgrades rather than loot, I would just have to change the index it sorts by for that, but I am not going to make it sort by upgrades, but am rather plan to add another element to the gangs which will be the overall score of the gang, which will use an equation to base it on number of members, number of upgrades, level and amount of loot, and then it will order by that.

Wouldnt this work
table.sort( TABLE, function( a, b ) 
	if a.level == b.level then 
		if a.upgrades == b.upgrades then 
			return a.loot > b.loot  
		else 
			return a.upgrades > b.upgrades 
		end  
	else 
		return a.level > b.level 
	end 
end )

You're not meant to tell them that I can do it relatively easily smh

Wut.... This doesn't make any sense lmao Why would you not just add it if it is easy instead tell people that it needed a complete recode when it obviously doesn't.

Seems a bit fishy to me
  • DEADMONSTOR
  • DEADMONSTOR's Avatar
  • Offline
  • Former Owner
  • ZARP VIP
  • Posts: 9276
  • Thanks received: 3799
  • Karma: 80
...
Login or register to post a reply.

Best gang on deathrun 6 years 2 weeks ago #889752

TheXnator wrote:
DEADMONSTOR wrote:
TheXnator wrote:
Warning: Spoiler! [ Click to expand ]


The code DEAD has given you is the code used. I did not say that I would have to recode it to go by upgrades rather than loot, I would just have to change the index it sorts by for that, but I am not going to make it sort by upgrades, but am rather plan to add another element to the gangs which will be the overall score of the gang, which will use an equation to base it on number of members, number of upgrades, level and amount of loot, and then it will order by that.

Wouldnt this work
table.sort( TABLE, function( a, b ) 
	if a.level == b.level then 
		if a.upgrades == b.upgrades then 
			return a.loot > b.loot  
		else 
			return a.upgrades > b.upgrades 
		end  
	else 
		return a.level > b.level 
	end 
end )

You're not meant to tell them that I can do it relatively easily smh
Yeah dead you can't tell us it's easy cause then he can't blame his inactivity on the fact that he "is working hard on the updates" :silly: :silly:


only a joke please no demote
  • Nick0GR
  • Nick0GR's Avatar
  • Offline
  • Marvelous Boarder
  • ZARP VIP
  • Posts: 10798
  • Thanks received: 3308
  • Karma: -113

GD+Server Apps Section staff
TS3+Discord Staff
Bhop Super admin
TTT Super admin
Discord: Nick0GR#9038
ex
TTT Super admin
Murder Super admin
PropHunt Head admin
Deathrun admin
SSRP admin
TeamSpeak staff
Server apps + appeal section moderator
Login or register to post a reply.
  • Page:
  • 1
  • 2
Moderators: Kanna.
Time to create page: 0.112 seconds

175 PLAYERS ONLINE

Connect to server View Gametracker DarkRP 1
7/127
online
Connect to server View Gametracker Deathrun
0/40
online
Connect to server View Gametracker TTT
0/47
online
Connect to server View Gametracker Bhop
0/32
online
Connect to server View Gametracker Surf
3/32
online
Connect to server View Gametracker Prop Hunt
0/42
online
Connect to server View Gametracker Sandbox
0/42
online
Connect to server Discord
165/789
online
Top