radio_active Posted October 22, 2008 Share Posted October 22, 2008 Helllo I am looking for a small piece of code which changes the way users get respect in gang wars, as far as i know its a small mathematical equation. Basically respect is based on the level of the person you attack. SO Heres the situation. I am a level 20. If i attack and hospitalize a level 20 i get 1 respect for the gang. If i attack a level 5 i get 0.25 respect for the gang If i attack a level 36 i get 1.80 respect for the gang '---------------'level 1 i get 0.05 respect '---------------'Level 100 i get 5 respect. This makes users want to stay a low level with higher stats so they can get more respect in gang wars and solves a few problems of people lvling to 350+ Please let me know if you can make this for free, i once had it but the server shutdown and the my last backup was a few weeks before i and lost ALOT of work and the coder who made it (Nurples) refused to make it again even though it was maybe 20-30 lines long which shows how great his customer service is. Quote Link to comment Share on other sites More sharing options...
winfidel Posted October 22, 2008 Share Posted October 22, 2008 Re: (Request) Gang wars - attacking - respect Have you tried going over his head and speaking with his GF Purple Nurples? Quote Link to comment Share on other sites More sharing options...
radio_active Posted October 22, 2008 Author Share Posted October 22, 2008 Re: (Request) Gang wars - attacking - respect This was last year, he will hardly remember the transcation... So im not fussed, i dont wish to work with him anymore. Quote Link to comment Share on other sites More sharing options...
felron Posted October 22, 2008 Share Posted October 22, 2008 Re: (Request) Gang wars - attacking - respect The math formula you want would be like so: $respect = $defender_lvl / $attacker_lvl; if( $respect > 1 ) $respect = 1; Change the variables to the correct names (not sure what mccodes calls them). If you start at level 0 with mccodes then you would need to check for level zero or else you'll throw an divide by zero error. Quote Link to comment Share on other sites More sharing options...
radio_active Posted October 22, 2008 Author Share Posted October 22, 2008 Re: (Request) Gang wars - attacking - respect Reading your post felron, i think you have the slight wrong impression. if $ir 'level' = $r 'level' respect = 1 (i know i havnt included brackets in them but that because its not code. for every level above, 0.05 respect extra is added onto 1 and for every level below $ir level ($ir being your level) is -0.05 respect off 1. Get me? Quote Link to comment Share on other sites More sharing options...
Tonka Posted October 22, 2008 Share Posted October 22, 2008 Re: (Request) Gang wars - attacking - respect give this a shot and let me know if($ir['level'] < $r['level'] or $ir['level'] > $r['level']) { $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT+$r['level']*0.05 WHERE gangID={$ir['gang']}"); } else if($ir['level'] == $r['level']) { $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT+1 WHERE gangID={$ir['gang']}"); } Quote Link to comment Share on other sites More sharing options...
radio_active Posted October 22, 2008 Author Share Posted October 22, 2008 Re: (Request) Gang wars - attacking - respect give this a shot and let me know $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT+$r['level']*0.05 WHERE gangID={$ir['gang']}"); By the look of that query its going to give 0.05 respect per how much the level of the opponent is so if they are level 20 you will get 1 respect. I want it so that if a level 1 attacks a level 10 they will get 1.5 respect, if they attack a level 5 and win, they get 1.25 respect. That query will not work. It needs a mathematical equation, about 20 lines of code i think using spaced code that is, so a few queries. Thanks for trying- Quote Link to comment Share on other sites More sharing options...
felron Posted October 22, 2008 Share Posted October 22, 2008 Re: (Request) Gang wars - attacking - respect if( $defender_lvl > $attacker_lvl ) { $respect = $defender_lvl + $attacker_lvl *.05 } elseif( $defender_levl < $attacker_lvl ) { $respect = $defender_lvl - $attacker_lvl *.05 } else { $respect = 1; } Quote Link to comment Share on other sites More sharing options...
Tonka Posted October 22, 2008 Share Posted October 22, 2008 Re: (Request) Gang wars - attacking - respect give this a shot and let me know $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT+$r['level']*0.05 WHERE gangID={$ir['gang']}"); By the look of that query its going to give 0.05 respect per how much the level of the opponent is so if they are level 20 you will get 1 respect. I want it so that if a level 1 attacks a level 10 they will get 1.5 respect, if they attack a level 5 and win, they get 1.25 respect. if you notice i did change what i posted when i had a 2nd look at it but what felron just posted looks like it would work Quote Link to comment Share on other sites More sharing options...
radio_active Posted October 22, 2008 Author Share Posted October 22, 2008 Re: (Request) Gang wars - attacking - respect Felron i think that might be it. The maths just all bundled up and made me confused, will that - respect from 1 if the defender is lower then the attacker and visa versa? Yes i saw the upgrade but i am also thinking felron has nailed it. Quote Link to comment Share on other sites More sharing options...
felron Posted October 23, 2008 Share Posted October 23, 2008 Re: (Request) Gang wars - attacking - respect if( $defender_lvl > $attacker_lvl ) { $respect = $defender_lvl + $attacker_lvl *.05 $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT+$respect WHERE gangID={$ir['gang']}"); } elseif( $defender_levl < $attacker_lvl ) { $respect = $defender_lvl - $attacker_lvl *.05 $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT-$respect WHERE gangID={$ir['gang']}"); } else { $respect = 1; $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT+1 WHERE gangID={$ir['gang']}"); } Sorry about the first post I didn't see that you wanted to go up past 1.0 my bad. I pulled the queries from the post above so I'm not sure it that is exactly what you need or not. Quote Link to comment Share on other sites More sharing options...
Floydian Posted October 23, 2008 Share Posted October 23, 2008 Re: (Request) Gang wars - attacking - respect $respect = $defender_lvl + $attacker_lvl *.05 If the defender is level 36, and the attacker is level 20, you get 56 * 0.05 or 2.8 Which, clearly, isn't the 1.8 asked for. If i attack a level 36 i get 1.80 respect for the gang Please note that in that scenario, he's stated he was the level 20 attacker. The equation you want is: 1 + ( ($them_level - $us_level) * 0.05) Which, with them at 36, and us at 20, translates into 1 + ( (36 - 20) * 0.05) 1+ ( 16 * 0.05) 1+ 0.8 1.8 ----- Respect gained With them at 20 and us at 36: 1 + ( (20 - 36) * 0.05) 1+ ( -16 * 0.05) 1+ -0.8 0.2 ----- Respect gained Quote Link to comment Share on other sites More sharing options...
radio_active Posted October 23, 2008 Author Share Posted October 23, 2008 Re: (Request) Gang wars - attacking - respect sooooo if( $defender_lvl > $attacker_lvl ) { $respect = 1 + ( ($them_level - $us_level) * 0.05) $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT+$respect WHERE gangID={$ir['gang']}"); } elseif( $defender_levl < $attacker_lvl ) { $respect = 1 - ( ($them_level - $us_level) * 0.05) $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT-$respect WHERE gangID={$ir['gang']}"); } else { $respect = 1; $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT+1 WHERE gangID={$ir['gang']}"); } So is that it? Quote Link to comment Share on other sites More sharing options...
Floydian Posted October 23, 2008 Share Posted October 23, 2008 Re: (Request) Gang wars - attacking - respect My equation is a catch all. It doesn't matter if their level is higher or lower. If their level is higher, you get +0.05 multiplied by the distance from your level to theirs, if their level is lower, you get -0.05 multiplied by the ^^^^^^^^^^^^^^^^^^^^ And if their level is equal to yours, the quation returns 1. No if's, else, and else ifs needed there. Just add the result to their respect. If their level is way lower than yours (you being the attacker) say, 50 levels lower, you'd actually lose 1.5 respect. I.e., your existing respect + respect gain or say 1234 (existing respect) + -1.5 1234 + -1.5 resulting in 1232.5 Quote Link to comment Share on other sites More sharing options...
radio_active Posted October 23, 2008 Author Share Posted October 23, 2008 Re: (Request) Gang wars - attacking - respect Orright. so just overright that over the respect equation? 1 + ( ($them_level - $us_level) * 0.05) Can you make it so that the you dont lost respect attacking lower levels, that would be rather annoying.? Quote Link to comment Share on other sites More sharing options...
radio_active Posted October 24, 2008 Author Share Posted October 24, 2008 Re: (Request) Gang wars - attacking - respect bump Quote Link to comment Share on other sites More sharing options...
radio_active Posted October 24, 2008 Author Share Posted October 24, 2008 Re: (Request) Gang wars - attacking - respect Okay im getting little bit confused where to put this 1 + ( ($them_level - $us_level) * 0.05) where the attack query is if (!$count) { $war=$db->fetch_row($warq); $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT-2 WHERE gangID={$r['gang']}"); $ga['gangRESPECT']-=2; $db->query("UPDATE gangs SET gangRESPECT=gangRESPECT+2 WHERE gangID={$ir['gang']}"); print " You earnt 2 respect for your gang!"; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.