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 - portify

Pages: 1 ... 128 129 130 131 132 [133]
1981
Modification Help / Re: "Get Random" script, Need help.
« on: May 08, 2014, 12:59:19 PM »
It would still work just fine without quote marks. If you want to be completely sure, first map the name to an ID using nameToID) and then check with isObject before playing the sound.

1982
Modification Help / Re: How to completely root all player threads?
« on: May 08, 2014, 12:56:56 PM »
for (%i = 0; %i < 5; %i++)
{
  %obj.playThread(%i, "root");
}

%obj.setActionThread("root");
%obj.setArmThread("look");

1983
Modification Help / Re: MySQL Connections?
« on: May 08, 2014, 12:56:18 PM »
MySQL uses a binary protocol for client-server connections. Implement a local proxy server or use a different database system. I've implemented a native client for Redis; it might be of use to you.

1984
Modification Help / Re: Revert back to the Original Emitter
« on: May 08, 2014, 12:54:48 PM »
Try adding a few pauses in between the emitters (empty timeout states). The state system tends to break a lot of things if you just quickly transition without any kind of buffer.

1985
Modification Help / Re: Listing things
« on: May 08, 2014, 12:53:25 PM »
Can you link, if one

https://youtube.com/watch?v=oU1t5ADGWyE

Would you think he still has the code?

Yes. I might fix it up a bit and publish it if there is enough demand.

1986
Modification Help / Re: [Resource] Support_TCPClient v3
« on: May 08, 2014, 12:51:50 PM »
Why not just have a single catch-all "request" method with a configurable method? What if I want to PUT, PATCH, DELETE, OPTIONS, HEAD, TRACE, CONNECT or something else?

It'd be nice if the request method returned an object representing the request (containing the sent headers, method, URI, data sent and the status of the request), and also if, when finished, that a response object would be created as well. It'd contain the received headers, raw response data, etc.

Pages: 1 ... 128 129 130 131 132 [133]