Forum

ASSIST, AMERICA'S ARMY COMMUNITY - RELIVE THE GLORY DAYS OF AMERICA'S ARMY 2.5

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ronski

Pages: 1 ... 8 9 [10] 11 12 ... 75
136
Feedback & Suggestions / Re: I cant join Servers
« on: Friday, January 13, 2017, 01:54:47 AM »
how to post a image?
upload it using some sort of image upload service such as https://postimage.org/ / http://imgur.com/ which allows you to direct share your upload, then simply add the link here

137
General Chat / Re: Harassment!!!
« on: Friday, January 13, 2017, 01:52:16 AM »
I don't want to be rude - I mean I get your frustration and I do agree that this shouldn't be allowed, but since when you have cared about this kind of thing? You were protecting Pit all the way while he was harassing Mia year ago and texts shown above are way less than his shit...

138
Anti-Cheat / Re: Shelby
« on: Saturday, January 07, 2017, 14:26:21 PM »
Alright, well appreciate the feedback, I think its still strange that even for someone with that experience could get insta headshots across the map but it's not impossible, and obviously his stats show more experience than most especially on this map. I still have my doubts but you've both added in your feedback and I'll have to respect the decision that you think he's legitimate, nevertheless thanks for responding and I guess I better get back to the game then ;)
I'm sure Teddy made a background check before answering and he would have told if there was anything fishy been found :)

139
Anti-Cheat / Re: Shelby
« on: Friday, January 06, 2017, 20:25:42 PM »
So, playing some urban assault, 2v2, this guy Shelby decides to start playing, they were kicking our ass and I'm sitting here thinking damn these guys are good, other player was very cautious, he played it very much the way it should be played. This guy Shelby just plays incredibly aggressive, which is fair enough given there were 4 of us total playing, but somehow, even when we are extremely quiet/careful, the guy throws a smoke, flash, frag take your pick and always seems to land right next to us, anytime he shot us from any distance he was killing us within the first 2/3 shots, so after about 5-6 rounds of this, myself and my teammate suddenly realise this isnt a good player, the other guy was genuinely good, but Shelby was just getting all the kills on the opposing team and they won all but 1 round which we miraculously managed to pull off a kill against this guy, his only death.

I mean, I could be wrong, but it seemed too coincidental with all the stuff happening. We were on the We Are Aimers #2 server, happened just a few minutes ago.
Shelby is a sexy clan player - Rose if I'm not completely wrong - with over thousand hours of experience from Urban Assault. Not saying I would know how was it like at server but we're talking about experienced UA player who Is simply good at this particular map, that's basically the only map their clan play ;) ah missing their way to leave server lol

140
Feedback & Suggestions / Re: RPG is not fun in Hospital take it out Wake up Assist
« on: Friday, December 30, 2016, 14:37:07 PM »
YOU DID IT. OMG, now I will get a shitload of complains :P, anyway, even if I wanted to change, I cannot rebuild the mod without the sauces ^^. There is another option, there is! BUT I'm lazy and I don't want to touch, actually I was going to check the RPG thing only, but as I haven't the sources so I can't do shit about :)

inb4: twss
busted, it's all your fault

141
Feedback & Suggestions / Re: RPG is not fun in Hospital take it out Wake up Assist
« on: Friday, December 30, 2016, 14:17:55 PM »
add
Code: [Select]
possessedIsKing=true
and you get what you want ;)

142
Feedback & Suggestions / Re: RPG is not fun in Hospital take it out Wake up Assist
« on: Friday, December 30, 2016, 13:26:00 PM »
i have found some variable's in HackHunter v3.5 im not sure if assist removed these variables or not in the version they are using but in this version these variable are set to be used through an ini file.

Code Snippet From U.uc in HackHunter.u:
Code: [Select]
var config int spawnprotectiontime;
var config int banminute;
var config int banhour;
var config int banday;
var config int banweek;

var config int maxwarnings;

function KickBan(string reason, PlayerReplicationInfo PRI)
{
local string BanStringname;
local string BanStringip;
local PlayerController PC;

Log("Banned Name="$ PRI.PlayerName $" Reason="$ reason,'Hack Hunter');
hackhunterlog("Banned Name="$PRI.PlayerName$" Reason="$reason);

BanStringname = PRI.PlayerName;
    BanStringip = PlayerController(PRI.GetController()).GetPlayerNetworkAddress();
    BanStringip = Mid(BanStringip,0,InStr(BanStringip,":"));

foreach DynamicActors(class'PlayerController', PC)
{
HumanController(PC).NotifyAdminMessage(PRI.PlayerName$" is banned! Reason: "$reason);
}

if(bdoban)
{
Level.Game.AccessControl.AddBanee(BanStringip,"IP",banweek,banday,banhour,banminute,PRI.PlayerName);
Level.Game.AccessControl.AddBanee(BanStringname,"Name",banweek,banday,banhour,banminute,PRI.PlayerName);
Level.Game.AccessControl.BanListSave();
if(myprivatebanid != "")
{
sendit("security="$myprivatebanid$"&name="$BanStringname$"&ip="$BanStringip$"&reason="$reason$"&Guid="$PlayerDataGUID[Getplayer(PRI)]);
}
}

if(bdokick)
{
PlayerController(PRI.Getcontroller()).ClientOpenMap("Leavenworth.aao");
}
}

function Dowarning(string reason, PlayerReplicationInfo PRI)
{
local PlayerController PC;
local int nr;

nr = Getplayer(PRI);

if (nr == -1)
  {
    return;
  }
PlayerDataiwarning[nr] += 1;

Log("warning Name="$ PRI.PlayerName $" Reason="$ reason,'Hack Hunter');
hackhunterlog("warning Name="$PRI.PlayerName$" Reason="$reason);

foreach DynamicActors(class'PlayerController', PC)
{
HumanController(PC).NotifyAdminMessage(PRI.PlayerName$" recieved a warning. Reason: "$reason);

if(PRI.PlayerName ~= PC.PlayerReplicationInfo.PlayerName)
{
HumanController(PC).ClientGlobalCameraScreenShake(10,800);
HumanController(PC).NotifyAdminMessage("You got a warning ("$PlayerDataiwarning[nr]$"). Reason: "$reason);
}
}

if ( PlayerDataiwarning[nr] >= maxwarnings)
{
KickBan(reason, PRI);
PlayerDataiwarning[nr] = 0;
}
}

So you could try something like this in the HackHunter.ini:
Code: [Select]
Under: [HackHunter.U]
Add: banminute=5
Add: banhour=0
Add: maxwarnings=3

Example:
[HackHunter.U]
bping=False
iallowedping=999
bdorestartmap=false
SpamProtectTimeNades=0
SpamProtectTime203=0
DropShotProtection=False
banminute=5
banhour=0
maxwarnings=3

I am not sure if this will work or not as im not sure what Assist changed in their version of the HackHunter.u but its worth a try.
if there's such variables in use in v3.5, it would be pretty silly if those would be overwritten by Assist. Something about 5-15minute ban would be good penalty imo of breaking a simple rule after five given warning ( or four to be precise, fifth will result a ban ).

btw you're doing great work, thanks :)

143
Assist Support / Re: bullguard/assist
« on: Friday, December 30, 2016, 04:48:14 AM »
Ever wondered where does the name for your antivirus software come from? No-one just would use it with it's real name Bullshitguard :)

144
Drama & Spam / Re: You can ban me , i dont care . Shame on you assist admins ...
« on: Thursday, December 29, 2016, 02:02:04 AM »
i caught him ... hacks , mods , idc , 4 me is all the same ...
Hacks are forbidden and they'll get caught by Assist. Mods are modifications which allows usage of shotguns, nades only etc and then there's respawn mod etc.. Not forbidden. From what you caught him was mpcheats and it's not same as hacking.

Mpcheat is a built in feature which is available for everyone and these mpcheats are not forbidden. They work only if serveradmin allows usage of them from adminpanel. Everyone who joins the server which has this setting on will get a notification about it and there at server you see it as well when they are turned on and off. Note that while this mode is on, server wont track.

Here you can see all mpcheat commands:
http://manual.americasarmy.com/index.php/What_console_commands_can_I_use_in_America's_Army%3F#4._Weapons_.26_MPCheats

I can't respond to your original question about why you got banned for 24 hours from shoutbox, I can only guess that your tone might have something to do with it. You've been told couple of times already what it was all about but still you're here posting shit with tone like this. Actually the title and your first post are kind of fucked up you know, title says you don't give a f, but then you're asking why you got banned. Shame on who?

145
Feedback & Suggestions / Re: I cant join Servers
« on: Friday, December 23, 2016, 02:14:57 AM »
When i click on any servers it says that "The IP address you are currently logged in is different from the IP address you used to log in"  :( or Some times the server opens and loads the map but then it bans me for 1 day for Unauthorised login.  :makemyday:

 :banned:pls help guys... reply in this post or send me private message

Thanks in advance :style:
When that happened to me my IP was actually changed, but thats because of shutting down VPN without restarting Assist. So usually when that error appears, all you need to do is restart Assist - but I bet you have already tried that.

Have you changed anything in your computer lately?

146
AA3 Maps / Re: HELP - I can't play in hospital
« on: Thursday, December 22, 2016, 17:32:57 PM »
Hi,

When i try to enter in a server with Hospital, the game say "download of SF hospital not allowed". what sould i do?
Have you tried running assist as administrator? I have never heard of this kind of problem but your error message sounds like a privilege issue, which might get easily resolved by running the exe file as administrator ( Im just assuming you're a Windows user ). If it wont help, I'd suggest you to try what Was said at shoutbox; repair install function from Install tab or completely remove all the game files, download new installer and install the game again

147
AA Support / Re: How do I play this game?
« on: Monday, December 19, 2016, 10:06:25 AM »
You could try and run AA without Assist, see if that works (I think Ronski might know a way to unpack the app or do I remember incorrectly?).
Navigate to /Users/USERNAME/Library/Application Support/25Assist/
( click Finder as your active app, hold down option and from top bar choose GO > Library, this way you'll get Application Support visible at your Library ), then just doubleclick on AA25.app. For me it tries to connect to server where I last was online, but because Assist is not open I can't join the server. After that will the actual game main menu appear

With unpacking the app Teddy prolly means opening package contents, it can be done by right clicking on .app file and choosing "Show package contents". This way you can add for example your own forceclass script files to correct folder and use them at server

148
AA Support / Re: How do I play this game?
« on: Monday, December 19, 2016, 07:59:43 AM »
Yeah it's just not booting up, training says to reset and repair. tried that and reinstalling the whole thing. Must just be the Mac is too old or something, I'm at work and it's from 2007, though I thought it would be able to run this game...

Our router don't block anything so it isn't that either.
it's pretty old one, I have MacBook Pro (late 2013) and can't brag about the performance of this one either

149
AA Support / Re: How do I play this game?
« on: Monday, December 19, 2016, 06:18:19 AM »
is it intel mac? I'm on a mac as well, you don't need to run Assist with any higher powers like some of Windows users have to do, how it should work is just to download, extract, install and go to deploy tab from where you simply need to double click on a server, nothing more

150
General Chat / Re: Vegeta never learns
« on: Sunday, December 11, 2016, 12:20:22 PM »
listen man i play this game once a while, too busy with work and the times that i play it i have to deal with this stupidity. Why in the hell would i start shit with this guy when i already know he is retarted and what i am going to go thru? i been thru with this kind of situation once with vegeta and thought it would be over but here we go again. i dont have time to go into servers and pick on people, thats not me. but homeboy over here it seems like thats all he does. and no i am not going to pb_kick him, i dont know how to do all this shit. Its your job as admin to take care of such matters. so pls do your job, what more proof do you want that this guy never learns..
If you're stating this at me, I'm nothing more than a player over here. I'm not administrating any bridge servers so banning him from servers where I have access is no relevant because he doesn't play anything else than Bridge.

I know and I've seen what kind of a player he is so I get what you're saying. Just saying the first shots you posted are showing two sided mocking ending up to teamkilling, what the rest of your shots are picturing quite clearly.

Usually teamkillers are handled by server owners and before you get in touch with any server admin you can deal with this kind of people with two ways and you're already half way there. Post evidence ( like you did ) and pb_kick the player out if there's nothing else to do while waiting for higher help.

You get his pb_id by writing to console pb_power for example, then from the list pick his pb id and type pb_kick and his id

for example

pb_power
pb_kick 11


in order to get one pb_kicked you need to get others typing the same pb_kick command to console as well

he's been pain in the ass with his tk's for a longer time already so something should be really done

Pages: 1 ... 8 9 [10] 11 12 ... 75

Download Assist

×

Download Game Client

Important: Battletracker no longer exists. However, old Battletracker accounts may still work. You can create a new 25Assist account here

Download Server Manager