Page 1 of 2

Remote eval spamming

Posted: Tue Feb 09, 2016 4:41 pm
by blankgirl
Whenever I walk into an inventory station, I get a sound and a message that says "You're remoteeval spamming the server. Wait 5 seconds." This only happens when I fully walk into an Invo, not just up to access it via zappy. I have a script in my config to make me automatically turn around when I enter the Inventory station.

What can I do to keep the auto-turn around working but not remoteeval spam the server?

Thanks :coolio:



<!>blankgirl

Re: Remote eval spamming

Posted: Tue Feb 09, 2016 7:10 pm
by <!>Taloney
The Turnaround when in Invo script shouldn't be the one spamming anything I got the same script and it never did that for me...
I would like to know if your using a dropper script of any kind?
I only receive those messages after I drop a few laser turrets after too little amount of time.

Re: Remote eval spamming

Posted: Tue Feb 09, 2016 8:22 pm
by blankgirl
<!>Taloney wrote:I would like to know if your using a dropper script of any kind?
I'm not using a dropper script when this happens. There might be a dropper in my config. But if there is, I'm not using it



blank

Re: Remote eval spamming

Posted: Wed Feb 10, 2016 11:16 am
by perrinoia
Post the turn around code, and if you have a dropper script, post that code too, even if you don't think it's the source of your problem.

I'll read em both and offer a solution.

Re: Remote eval spamming

Posted: Wed Feb 10, 2016 11:45 am
by blankgirl
perrinoia wrote:Post the turn around code, and if you have a dropper script, post that code too, even if you don't think it's the source of your problem
Inventory Turn code

Code: Select all

// Inventory Turn
// Written by Moss

Event::Attach(eventEnterStation, inv::turn);

function inv::turn()
{
	schedule("postAction(2048, IDACTION_TURNLEFT, 0.33);", 0.01);
	schedule("postAction(2048, IDACTION_TURNLEFT, -0);", 0.31);
}
Looked everywhere I could for a dropper scripts but there's none to be found. Hope this little bit helps.

Thanks,



blanks :coolio:

Re: Remote eval spamming

Posted: Wed Feb 10, 2016 1:15 pm
by perrinoia
It helps determine that this turning script is not the problem.

The problem is a script that causes too many remote function calls. Post-actions aren't counted.

Can you find "eventEnterStation" in any other script file?

Re: Remote eval spamming

Posted: Wed Feb 10, 2016 2:44 pm
by blankgirl
perrinoia wrote:Can you find "eventEnterStation" in any other script file?
Yes. I found "eventEnterStation" in 4 files. GUI, Loadouts.acs, Station, and Inventory Turn.



blank

Re: Remote eval spamming

Posted: Wed Feb 10, 2016 5:32 pm
by perrinoia
OK, my money's on Loadouts.acs, but if you post all 4, I'll let you know, for sure.

Re: Remote eval spamming

Posted: Wed Feb 10, 2016 11:49 pm
by AnniDv6
I'm pretty sure default 1.4 has a check box in the keybinds for automatically dropping repair packs when you enter a station. Go through all the options menus in game and see if anything like that is checked.

Re: Remote eval spamming

Posted: Thu Feb 11, 2016 10:32 am
by perrinoia
Maybe... But due to the fact that he claims it's not spewing anything, I'm willing to bet it's trying to buy something that isn't even in the mod he's playing.