[FIXED] Immovable objects in backpack
-
Osprey
- UOX3 Neophyte
- Posts: 47
- Joined: Sun Jul 27, 2008 12:22 pm
- Location: Australia
- Has thanked: 0
- Been thanked: 0
Immovable objects in backpack
Using - Experimental version of UOX3.
I bought some cloth and made bandages on a char then found that I could not move them. I got my GM char to see if he could move them - no. By coincidece he had some bandages on him which also could not be movd so I tried the "'allmove ON" command - still no go. Then I used "'set movable 1" still no change. I'll try restarting the shard and post in bugs if it doesn't change.
I used World builder (GMMenu-> Move to bag) and moved it to my GMs bag but I still could not move them manually. I bought more cloth and cut it into bandages on my other char and now cannot move those bandages.
Am I missing something or is it a bug.
I bought some cloth and made bandages on a char then found that I could not move them. I got my GM char to see if he could move them - no. By coincidece he had some bandages on him which also could not be movd so I tried the "'allmove ON" command - still no go. Then I used "'set movable 1" still no change. I'll try restarting the shard and post in bugs if it doesn't change.
I used World builder (GMMenu-> Move to bag) and moved it to my GMs bag but I still could not move them manually. I bought more cloth and cut it into bandages on my other char and now cannot move those bandages.
Am I missing something or is it a bug.
-
Osprey
- UOX3 Neophyte
- Posts: 47
- Joined: Sun Jul 27, 2008 12:22 pm
- Location: Australia
- Has thanked: 0
- Been thanked: 0
This same scenario happened again - this time when I was fishing and hauled up flotsam - all the flotsam is immovable in my backpack. I was able to move them with the 'set movable 1 command.
The flotsam in question was broken clocks, broken chairs and various bones. Gems, gold coins, boots and fish were all movable when pulled up.
Thought this may help!
The flotsam in question was broken clocks, broken chairs and various bones. Gems, gold coins, boots and fish were all movable when pulled up.
Thought this may help!
UPDATE:
Went back to 3.7q (replaced the uox3.exe and js32.dll) and performed the same task I was doing before I saw the bug:
I added all the musical instruments from the 'add menu one at a time then tried to move them. Good to go on 3.7q, not good on 3.7t.
This could be a nasty bug to find. Maybe it was a bad compile of the code, or a faulty convert into a zip file?
Went back to 3.7q (replaced the uox3.exe and js32.dll) and performed the same task I was doing before I saw the bug:
I added all the musical instruments from the 'add menu one at a time then tried to move them. Good to go on 3.7q, not good on 3.7t.
This could be a nasty bug to find. Maybe it was a bad compile of the code, or a faulty convert into a zip file?
-
giwo
- Developer
- Posts: 1780
- Joined: Fri Jun 18, 2004 4:17 pm
- Location: California
- Has thanked: 0
- Been thanked: 0
Pretty sure I see the problem
CPlayerAction.cpp
I'm fairly certain that should be if( !toExecute->OnPickup( i, ourChar ) )
CPlayerAction.cpp
Code: Select all
UI16 targTrig = i->GetScriptTrigger();
cScript *toExecute = JSMapping->GetScript( targTrig );
if( toExecute != NULL )
{
if( toExecute->OnPickup( i, ourChar ) ) // returns false if we should bounce it
{
tSock->Send( &bounce );
return true;
}
}-
dracuskaos
- UOX3 Neophyte
- Posts: 35
- Joined: Sat Oct 25, 2008 3:54 am
- Has thanked: 0
- Been thanked: 0
I found an ingame work around, it's tedious but it works. if you try to move objects VERY fast it will tell you "you cannot pick that up" but it moves it anyway.
I will verify that giwo's suggestion works regarding the following
Pretty sure I see the problem
CPlayerAction.cpp
Code:
UI16 targTrig = i->GetScriptTrigger();
cScript *toExecute = JSMapping->GetScript( targTrig );
if( toExecute != NULL )
{
if( toExecute->OnPickup( i, ourChar ) ) // returns false if we should bounce it
{
tSock->Send( &bounce );
return true;
}
}
I'm fairly certain that should be if( !toExecute->OnPickup( i, ourChar ) )
-
RandallFlagg26
- UOX3 Newbie
- Posts: 16
- Joined: Wed May 18, 2011 1:25 am
- Has thanked: 0
- Been thanked: 0
I'm using uox3 version 0.98-4.0h and I'm having the same fishing problem that Osprey was talking about in 2008. I must be tired or slow but I wasn't able to determine what the fix was nor how to implement it. Could one of you uox3 gurus please explain it to me?