| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 478 人关注过本帖
标题:重设值的问题。
取消只看楼主 加入收藏
hafolee
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-6-24
收藏
 问题点数:0 回复次数:1 
重设值的问题。

大家好,下面是一个游戏的脚本,C#的
我的目的是这样,首先,我设置一个系统=MoneySystem,然后在这个系统下设置一个值=m_HowMuchMoney,然后系统检测,如果检测到自己的属性超过100,这个值就改变了。。我不太懂C#,但是我知道这个脚本是错误的,因为这个m_HowMuchMoney值在一开始就被设置了,所以我读取到的是0,就算改变了也读取不到。。我想问一下大家,有什么办法可以让我读取到这个改变的值,而不是一开始的值。

程序代码:

using System;
using Server;
using Server.Items;
using Server.Mobiles;
using Server.Commands;

namespace Server
{
public class MoneySystem
{
public static double m_HowMuchMoney ;

public MoneySystem( Mobile from , double howmuchmoney )
{
m_HowMuchMoney = howmuchmoney ;

if ( from.Skills.Cap > 100 )
{
howmuchmoney = 100 ;
}
else if ( from.Skills.Cap > 200 )
{
howmuchmoney = 200 ;
}
else if ( from.Skills.Cap > 300 )
{
howmuchmoney = 300 ;
}
else
{
howmuchmoney = 500 ;
}
}

public static void Initialize()
{
CommandSystem.Register( \"money\", AccessLevel.Administrator, new CommandEventHandler( money_Command ) );
}

[Usage( \"money\" )]
[Description( \"fewaeawfwewa.\" )]
public static void money_Command( CommandEventArgs e )
{
e.Mobile.SendMessage ( \"your money is {0}\",MoneySystem.m_HowMuchMoney );
}

}
}

搜索更多相关主题的帖子: 重设 
2006-07-10 01:14
hafolee
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-6-24
收藏
得分:0 
有人可以帮我解答一下吗?谢谢
2006-07-10 11:45
快速回复:重设值的问题。
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025777 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved