Exemplo n.º 1
0
 private static void HelpLinkFunc(string strTextKey)
 {
     if (!string.IsNullOrEmpty(strTextKey))
     {
         NrNewOpenURL.NewOpenHelp_URL(strTextKey);
     }
 }
Exemplo n.º 2
0
    private static void NpcLinkFunc(string strTextKey, string strText)
    {
        int num = 0;

        if (string.IsNullOrEmpty(strTextKey))
        {
            num = NrTSingleton <NrCharKindInfoManager> .Instance.GetCharKindByName(strText);
        }
        else
        {
            try
            {
                num = Convert.ToInt32(strTextKey);
            }
            catch (Exception ex)
            {
                Debug.Log(ex.ToString() + "Error : {0} is not Int32." + strTextKey);
            }
        }
        if (0 < num && 5000 > num)
        {
            NrNewOpenURL.NewOpenHelp_URL(num.ToString());
        }
    }
Exemplo n.º 3
0
 protected void DoURL()
 {
     NrNewOpenURL.NewOpenHelp_URL(this.URL);
 }