Search found 22 matches
- Wed Jun 07, 2006 1:02 am
- Forum: PSP Lua Player Development
- Topic: PSPirc v0.1b Released!
- Replies: 0
- Views: 2413
PSPirc v0.1b Released!
I've just finished to write PSPirc, an IRC client written in lua. Features **************** - Multichannel support - Base IRC commands support - Base DCC support (you can only receive files) - Private messages support - Danzeff virtual keyboard TODO **************** - Text scrolling - Improoved nick...
- Sun Jun 04, 2006 10:25 pm
- Forum: PSP Lua Player Development
- Topic: LongtoIp problem
- Replies: 21
- Views: 9042
- Sun Jun 04, 2006 8:42 pm
- Forum: PSP Lua Player Development
- Topic: LongtoIp problem
- Replies: 21
- Views: 9042
- Sun Jun 04, 2006 7:25 pm
- Forum: PSP Lua Player Development
- Topic: LongtoIp problem
- Replies: 21
- Views: 9042
- Sat Jun 03, 2006 7:50 pm
- Forum: PSP Lua Player Development
- Topic: LongtoIp problem
- Replies: 21
- Views: 9042
- Sat Jun 03, 2006 7:19 pm
- Forum: PSP Lua Player Development
- Topic: LongtoIp problem
- Replies: 21
- Views: 9042
- Sat Jun 03, 2006 6:04 pm
- Forum: PSP Lua Player Development
- Topic: LongtoIp problem
- Replies: 21
- Views: 9042
- Fri Jun 02, 2006 10:49 pm
- Forum: PSP Lua Player Development
- Topic: LongtoIp problem
- Replies: 21
- Views: 9042
- Fri Jun 02, 2006 10:11 pm
- Forum: PSP Lua Player Development
- Topic: Speed up file transfers
- Replies: 1
- Views: 2176
Speed up file transfers
I'm writing an irc client. I'have just added the dcc support. But the file transfer is very slow... here is the code: while true do --if string.len(buffer)>0 then buffer = dcc:recv() rbytes=rbytes+string.len(buffer) file=io.open(conf.do...
- Fri Jun 02, 2006 9:52 pm
- Forum: PSP Lua Player Development
- Topic: LongtoIp problem
- Replies: 21
- Views: 9042
- Fri Jun 02, 2006 9:28 pm
- Forum: PSP Lua Player Development
- Topic: LongtoIp problem
- Replies: 21
- Views: 9042
- Fri Jun 02, 2006 8:05 pm
- Forum: PSP Lua Player Development
- Topic: LongtoIp problem
- Replies: 21
- Views: 9042
Your idea is good... but luaplayer 0.16 doesn't support shift operators.
Shine says that x>>y == math.floor(x / math.pow(2, y)).
http://forums.ps2dev.org/viewtopic.php?t=3138
So the result is the same as my function.
Shine says that x>>y == math.floor(x / math.pow(2, y)).
http://forums.ps2dev.org/viewtopic.php?t=3138
So the result is the same as my function.
- Thu Jun 01, 2006 6:06 pm
- Forum: PSP Lua Player Development
- Topic: LongtoIp problem
- Replies: 21
- Views: 9042
LongtoIp problem
Im'm writing an irc client in lua. For the dcc send support i have to convert a long integer ip to an human readable ip. I wrote this function: function longtoip(long) ip = "" for i=3,0,-1 do ip = ip .. (long / math.pow(256,i)) long = long - ...
- Mon May 22, 2006 11:35 pm
- Forum: PSP Lua Player Development
- Topic: Controls help
- Replies: 3
- Views: 3389
- Mon May 22, 2006 11:28 pm
- Forum: PSP Lua Player Development
- Topic: Controls help
- Replies: 3
- Views: 3389
Controls help
I have to check if 2 buttons are pressed at the same time. Do you know how to do this?
- Sun May 21, 2006 9:04 pm
- Forum: PSP Lua Player Development
- Topic: Socket.connect() not working
- Replies: 18
- Views: 8436
- Sun May 21, 2006 7:22 pm
- Forum: PSP Lua Player Development
- Topic: Socket.connect() not working
- Replies: 18
- Views: 8436
- Sat May 20, 2006 10:31 pm
- Forum: PSP Lua Player Development
- Topic: Socket.connect() not working
- Replies: 18
- Views: 8436
- Sat May 20, 2006 7:18 pm
- Forum: PSP Lua Player Development
- Topic: Socket.connect() not working
- Replies: 18
- Views: 8436
0.16 has no DNS you will have to type the ipaddress manual. Example. 192.168.1.1 From Luaplayer changelog: v0.16 (all changes for this version by Shine) ================================================ - Wlan:getIPAddress bugfix: now it returns nil on error and the IP address otherwise - DNS resolv...
- Tue May 16, 2006 11:48 pm
- Forum: PSP Lua Player Development
- Topic: Socket.connect() not working
- Replies: 18
- Views: 8436
- Fri May 12, 2006 11:18 pm
- Forum: PSP Lua Player Development
- Topic: Socket.connect() not working
- Replies: 18
- Views: 8436
I have a similar problem. I can't use sockets in my apps. If I use them the program freezes at the instruction
i use eloader 0.97, luaplayer 0.16, firmware 2.60
what's the problem?
Code: Select all
Wlan.useConnectionConfig(1)
what's the problem?
- Mon Apr 17, 2006 10:42 pm
- Forum: PSP Lua Player Development
- Topic: Luaplayerwindows sockets support
- Replies: 0
- Views: 1520
Luaplayerwindows sockets support
did you plan to add sockets support in luaplayerwindows?