I'm So sorry to bother you guys again!
I'm quite eh.. awkward to be here asking questions again but I find nowhere to solve this int/float puzzle.
The problem is this : since I get the total value of all items (Thanks to hypno88 and you all ) , I try to multiply it with a 0.x number. For example, I get value of 25 in the chest, I multiply it with 0.1 to make it turn 2.5, and I try to floor this number to make it 2. Simple as it seems, IT'S HARD........
Here is my script:
Scriptname DDDSell extends ObjectReferenceObjectReference property chest01 autoObjectReference property chest02 automiscobject property gold001 autoGlobalVariable Property totalValue AutoEvent OnActivate(ObjectReference akActionRef) float PlayerSpeech = Game.GetPlayer().GetActorValue("Speechcraft") int rate =( ( ( PlayerSpeech - 15 ) / 50 ) * 10 ) as int Debug.Notification(rate ) float money = totalValue.getvalue() * rate / 10 Debug.Notification(money) money = math.floor( money ) int x = money as int Debug.Notification(money) Debug.Notification(x) Debug.Notification("PlayerSpeech:"+ PlayerSpeech) chest01.RemoveAllItems() chest02.additem(gold001, 5) EndEvent
Explanation:
1. Everything works fine before the line " int x = money as int", after I floored the money I get a float like 5.0000000
2. The reason I choose to use float in " float PlayerSpeech = Game.GetPlayer().GetActorValue("Speechcraft")" is that I can only use float. There will be an error if I use "int PlayerSpeech = Game.GetPlayer().GetActorValue("Speechcraft")" Papyrus will alarm.
3. I try to creat a int called x to store the int, If money is 5.00000 x will be 5. BUT this x turns out to be -431.2344 I'm not lying.
4. I tried to use int x = math.floor( money ) It wont work.
5. The reason I put (gold001, 5) is that If I replace 5 with x, It will alarm. So the problem is about the x. I have no idea where it goes wrong. I've learne C++ and Html , never figure out how int or float works.
I'm defeated by this one. Hope you guys could save me again....
THANK YOU