xbox-scene.com - your xbox news information source
Quick Links: Main Forums | Xbox360 Forums | Xbox1 Forums | PS3 Forums
Xbox-Scene Forum Help  Search Xbox-Scene Forums   Xbox-Scene Forum Members   Xbox-Scene Calendar

Giganews Usenet Offers: +1150 days binary retention, 99%+ Completion, and Unlimited Speed/Access!

360 ODD Emulators: X360 Key $99 | Wasabi360 FAT $99 | Wasabi360 Slim $99
C4E's iXtreme Burner MAX Drive: LiteOn iHAS124 DROPPED TO JUST $17


Welcome Guest ( Log In | Register )

 Forum Rules Rules
47 Pages V « < 45 46 47  
Reply to this topicStart new topic
> Mxm Wip Releases, Report bugs here
BenJeremy
post Sep 16 2004, 03:39 AM
Post #691


X-S Elysian
*************

Group: Head Moderator
Posts: 9688
Joined: 19-July 02
Member No.: 1853
Xbox Version: v1.1
360 version: v1 (xenon)



Anybody try it out?

I haven't had time to do a network settings script.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Yuyu
post Sep 16 2004, 04:31 AM
Post #692


X-S Spirit Detective
*****

Group: Moderator
Posts: 1231
Joined: 11-June 03
From: Belleville, IL
Member No.: 43348
Xbox Version: v1.1
360 version: v2 (zephyr)



I'll try it out in the morning before school wink.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
geniusalz
post Sep 22 2004, 04:09 AM
Post #693


Team MXM
*****

Group: Head Moderator
Posts: 1827
Joined: 3-January 03
Member No.: 16298
Xbox Version: v1.1
360 version: unknown



Between 9-hour sport matches and university back on, I finally managed to get some time to try out the new build.

Got to say, the skin switching is amazing. No hiccups so far (I tried about 5 different skins at a time), and the transitions between skins are flawless. I especially like the fade, and how it eliminates the usual flickering/resizing that happens when changing skins in just about any program I can think of.

kudos pop.gif

BTW, I'll look into the network stuff later. Any ideas on how to auto-reset network settings when network cable is plugged in/pulled out?

This post has been edited by geniusalz: Sep 22 2004, 04:12 AM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
chilin_dude
post Sep 27 2004, 10:42 PM
Post #694


X-S Knowledgebase
********

Group: Members
Posts: 4945
Joined: 12-January 03
From: USA
Member No.: 19165
Xbox Version: v1.0
360 version: unknown



Just tried it out BJ, couple of comments:

1. The skin switching is EXTREMELY nice, i too love how it fades into the new skin, I changed between 6-7 skins with no problems... It was so nice not to have to restart, now we only need previews of the skins wink.gif .

2. Love the new skins that are included, I take it you made them, they are very good, especially the animated robot! I love the way it shoots when you are loading something!

Couple of non-Wip comments.
Tonight I was trying to get my xbox to see F:\ I enabled partitining using the system menu, but everytime I rebooted it went back to 'enable partitioning'=No.

So I did it through Evo-x. However I then rebooted and MXM saw no F:\ which was weird... I went through all the settings and couldn't see anything... then it hit me after 1 hour of fiddling... When I had used the mxm patcher I'd clicked to disable F on startup. So I wonder if its possible to add re-enabling G and F in the menu? or simply stating that they are currently disabled?

Another thing is that MXM ALWAYS says that it is in Safemode - Which is kind of weird... Is there any reason for this? My time/date is always set and the xbox is left plugged in...


Thanks beerchug.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
flattspott
post Sep 28 2004, 02:25 AM
Post #695


X-S Freak
*****

Group: Moderator
Posts: 1787
Joined: 14-April 03
From: Southern California
Member No.: 32293
Xbox Version: v1.0
360 version: v1 (xenon)



QUOTE
Love the new skins that are included, I take it you made them, they are very good, especially the animated robot! I love the way it shoots when you are loading something!



Nope BJ didn't make the cheesy Robo skins... I did laugh.gif
Not to mention that they've been there for quite some time now.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
chilin_dude
post Sep 28 2004, 07:47 AM
Post #696


X-S Knowledgebase
********

Group: Members
Posts: 4945
Joined: 12-January 03
From: USA
Member No.: 19165
Xbox Version: v1.0
360 version: unknown



QUOTE (flattspott @ Sep 28 2004, 02:28 AM)


Nope BJ didn't make the cheesy Robo skins... I did laugh.gif
Not to mention that they've been there for quite some time now.

Shows that I haven't been looking carefully enough... Good work, the loading screen absoloutley rocks!
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
SumDumGuy3
post Oct 2 2004, 11:16 PM
Post #697


X-S Young Member
*

Group: Members
Posts: 53
Joined: 10-August 04
Member No.: 137432



ok, incoming Bug Report

This is a rather simplistic script, but I believe it gathers enough information. This Bug is related to math. I will try to spend some time doing some more comprehensive math function coverage. However I was trying to do some division and ran into some problems. I tried different functions and came out with other problems so I wrote this simple script to gather information about the division functions. This includes using Div, FDiv, Mod, Set Varname (No/No) and Set Varname (No%No). Below is the results and below that is the actual script used.

Edit: I guess I could go ahead and state what is derived from the information below as well... though its pretty obvious from looking at it.

Div Does Not appear to work correctly.
FDiv Does Not appear to work correctly.
Mod Does appear to work correctly.
Set Varname (/) Does appear to work correctly.
and
Set Varname (%) Does appear to work correctly.


Hope this helps

CODE

Div 4  2 is   4
FDiv 4  2 is   4.000000
Mod 4  2 is   0
Set SizeOfDrv (4/2) is  2
Set SizeOfDrv (4Mod2) is  0

Div 5  2 is   4
FDiv 5  2 is   5.000000
Mod 5  2 is   1
Set SizeOfDrv (5/2) is  2.5
Set SizeOfDrv (5Mod2) is  1

Div 2048  1024 is   2048
FDiv 2048  1024 is   2048.000000
Mod 2048  1024 is   0
Set SizeOfDrv (2048/1024) is  2
Set SizeOfDrv (2048Mod1024) is 0

Div 2560  1024 is   2048
FDiv 2560  1024 is   2560.00000
Mod 2560  1024 is   512
Set SizeOfDrv (2560/1024) is  2.500000
Set SizeOfDrv (2560Mod1024) is 512


CODE
Set   SizeOfDrv 4
Div   SizeOfDrv 2
Set   OutPut  "Div 4 2 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 4
FDiv  SizeOfDrv 2
Set   OutPut  "%OutPut%FDiv 4 2 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 4
Mod   SizeOfDrv 2
Set   OutPut  "%OutPut%Mod 4 2 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 4
Set   SizeOfDrv %(SizeOfDrv/2)%
Set   OutPut  "%OutPut%Set SizeOfDrv (4/2) is %SizeOfDrv%$eol$"
Set   SizeOfDrv 4
Set   SizeOfDrv %(SizeOfDrv%2)%
Set   OutPut  "%OutPut%Set SizeOfDrv (4Mod2) is %SizeOfDrv%$eol$$eol$"
Set   SizeOfDrv 5
Div   SizeOfDrv 2
Set   OutPut  "%OutPut%Div 5 2 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 5
FDiv  SizeOfDrv 2
Set   OutPut  "%OutPut%FDiv 5 2 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 5
Mod   SizeOfDrv 2
Set   OutPut  "%OutPut%Mod 5 2 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 5
Set   SizeOfDrv %(SizeOfDrv/2)%
Set   OutPut  "%OutPut%Set SizeOfDrv (5/2) is %SizeOfDrv%$eol$"
Set   SizeOfDrv 5
Set   SizeOfDrv %(SizeOfDrv%2)%
Set   OutPut  "%OutPut%Set SizeOfDrv (5Mod2) is %SizeOfDrv%$eol$$eol$"
Set   SizeOfDrv 2048
Div   SizeOfDrv 1024
Set   OutPut2  "Div 2048 1024 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 2048
FDiv  SizeOfDrv 1024
Set   OutPut2  "%OutPut2%FDiv 2048 1024 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 2048
Mod   SizeOfDrv 1024
Set   OutPut2  "%OutPut2%Mod 2048 1024 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 2048
Set   SizeOfDrv %(SizeOfDrv/1024)%
Set   OutPut2  "%OutPut2%Set SizeOfDrv (2048/1024) is %SizeOfDrv%$eol$"
Set   SizeOfDrv 2048
Set   SizeOfDrv %(SizeOfDrv%1024)%
Set   OutPut2  "%OutPut2%Set SizeOfDrv (2048Mod1024) is %SizeOfDrv%$eol$$eol$"
Set   SizeOfDrv 2560
Div   SizeOfDrv 1024
Set   OutPut2  "%OutPut2%Div 2560 1024 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 2560
FDiv  SizeOfDrv 1024
Set   OutPut2  "%OutPut2%FDiv 2560 1024 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 2560
Mod   SizeOfDrv 1024
Set   OutPut2  "%OutPut2%Mod 2560 1024 is %SizeOfDrv%$eol$"
Set   SizeOfDrv 2560
Set   SizeOfDrv %(SizeOfDrv/1024)%
Set   OutPut2  "%OutPut2%Set SizeOfDrv (2560/1024) is %SizeOfDrv%$eol$"
Set   SizeOfDrv 2560
Set   SizeOfDrv %(SizeOfDrv%1024)%
Set   OutPut2  "%OutPut2%Set SizeOfDrv (2560Mod1024) is %SizeOfDrv%$eol$$eol$"
BeginDraw  UseCurrent
MessageBox  "%OutPut%"
EndDraw
Input
BeginDraw  UseCurrent
MessageBox  "%OutPut2%"
EndDraw
Input


Let me know if there is something more I need to provide to help isolate this one.

Thanks,
SDG

This post has been edited by SumDumGuy3: Oct 2 2004, 11:21 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
thetruethugg
post Oct 21 2004, 10:34 PM
Post #698


X-S Expert
***

Group: Members
Posts: 638
Joined: 11-December 02
Member No.: 12967
Xbox Version: v1.0



In the latest WIP (and maybe a few back now that I think about it), MXM always adds the automenu.. I don't use automenu, but MXM appends it to the end of my normal menu, no matter what. It's not that big of a deal, just kind of annoying. Everything is set to 'off' in the system menu for automenu, it's been that way for over a year, never changed, it just started adding the shit sometime, awhile ago, but I never paid any attention to it, then I relized, hey it might be a bug and you should know. wink.gif

I have tried changing it from app & game to drive, which does change it, but it never goes away.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
chilin_dude
post Oct 22 2004, 11:01 AM
Post #699


X-S Knowledgebase
********

Group: Members
Posts: 4945
Joined: 12-January 03
From: USA
Member No.: 19165
Xbox Version: v1.0
360 version: unknown



QUOTE (thetruethugg @ Oct 21 2004, 10:37 PM)
In the latest WIP (and maybe a few back now that I think about it), MXM always adds the automenu.. I don't use automenu, but MXM appends it to the end of my normal menu, no matter what. It's not that big of a deal, just kind of annoying. Everything is set to 'off' in the system menu for automenu, it's been that way for over a year, never changed, it just started adding the shit sometime, awhile ago, but I never paid any attention to it, then I relized, hey it might be a bug and you should know. wink.gif

I have tried changing it from app & game to drive, which does change it, but it never goes away.

Yes, I too found that out when I tested it.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
jlm5151
post Oct 22 2004, 10:28 PM
Post #700


X-S Genius
****

Group: Members
Posts: 793
Joined: 15-July 02
Member No.: 1579
Xbox Version: v1.4
360 version: v1 (xenon)



Looks like I have catching up to do.... tongue.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
geniusalz
post Oct 24 2004, 02:26 AM
Post #701


Team MXM
*****

Group: Head Moderator
Posts: 1827
Joined: 3-January 03
Member No.: 16298
Xbox Version: v1.1
360 version: unknown



Welcome back cool.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
chilin_dude
post Dec 3 2004, 07:47 PM
Post #702


X-S Knowledgebase
********

Group: Members
Posts: 4945
Joined: 12-January 03
From: USA
Member No.: 19165
Xbox Version: v1.0
360 version: unknown



*Sings*
Come back....
Baby come back....
wink.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post





47 Pages V « < 45 46 47
Reply to this topicStart new topic

 

Lo-Fi Version Time is now: 23rd May 2013 - 05:56 AM