Search found 6 matches

by joreofiorio35
Tue Jan 17, 2006 1:55 am
Forum: PSP Lua Player Development
Topic: Drawing circles
Replies: 8
Views: 4189

Heres one I just coded: function drawCirc&#40;x, y, radiusfill, color, fillcolor&#41; x=x+radiusfill y=y+radiusfill theta = 0 for radius = 1, radiusfill do while theta<=360 do if radius == radiusfill then fillcolor = color end screen&#58;drawLine&#40;&#40;math.sin&#40;theta&a...
by joreofiorio35
Sat Dec 10, 2005 8:05 am
Forum: PSP Lua Player Development
Topic: Wlan.getIPAddress() function not working
Replies: 7
Views: 3423

I have another way of getting your IP as of right now, this one will only get your router's IP which you can access your PSP through by port forwarding whichever port your program uses to listen with. This just connects a site and gets the IP from that site by picking apart the string of HTML code. ...
by joreofiorio35
Mon Dec 05, 2005 9:04 am
Forum: PSP Lua Player Development
Topic: Wlan.getIPAddress() function not working
Replies: 7
Views: 3423

Yes, Please Do fix it (if that is the problem) and if you can, can you send me the new compiled version once fixed, or post it on the site? (I dont have the pspsdk and dont have space for it)
by joreofiorio35
Mon Dec 05, 2005 8:43 am
Forum: PSP Lua Player Development
Topic: Wlan.getIPAddress() function not working
Replies: 7
Views: 3423

Actually shine, I think you have made an error in your coding. Here is what PspPet has: if &#40;sceNetApctlGetInfo&#40;8, szMyIPAddr&#41; != 0&#41; strcpy&#40;szMyIPAddr, "unknown IP address"&#41;; And here is what you have Shine: if &#40;sceNetApctlGetInfo&...
by joreofiorio35
Mon Dec 05, 2005 6:41 am
Forum: PSP Lua Player Development
Topic: Wlan.getIPAddress() function not working
Replies: 7
Views: 3423

Wlan.getIPAddress() function not working

Has anybody got this function to work? I am coding a chat program in LUA and I need to tell the user what IP Address his PSP is so other users can connect to him. Yesterday this was coming up with errors saying, "Invalid IP Address." And today it is coming up as a bunch of jumbled up text ...
by joreofiorio35
Sat Dec 03, 2005 10:36 am
Forum: PSP Lua Player Development
Topic: RSS Feed?
Replies: 5
Views: 3741

Hey Shine, looking good so far. Can you please post the functions that are used so far by the Wlan class and the Socket class (class or whatever its called)? And you might want to update the function reference on the wiki so that it shows all of the IR functions and etc that can be used in version 0...