Budget: 400 UAH Deadline: 1 day
Здравствуйте, покажите исходники программы и напишите что нужно сделать.
Есть определенный код... мне нужен человек который разбирается в С# переведет код и в дальнейшем возможно понадобится для доработки этой программы. (за другую плату естественно).
Просьба новичкам и не беспокоить код читать я тоже слегка умею нужен человек который сможет помочь.!Budget: 400 UAH Deadline: 1 day
Здравствуйте, покажите исходники программы и напишите что нужно сделать.
Budget: 300 UAH Deadline: 1 day
Здравствуйте, готов посмотреть и помочь разобраться с кодом.
Budget: 1000 UAH Deadline: 4 days
Прям заинтриговал )) ... И мне интресно разобраться с этим кодом. Вышли мне, пожалуйста, этот чудо-код.
Budget: 100 UAH Deadline: 1 day
Добрый день!
В C# разбираюсь хорошо. Могу упростить код, оптимизировать, добавить комментарии, исправить ошибки или то, что нужно будет.
Пишите, буду рад помочь!
public bool getCaptcha()
{
if (this.gonaStop)
{
this.locked = true;
this.stopped = false;
this.blocked = false;
this.requestTime = -0;
}
this.locked = true;
Connecter connecter = new Connecter
{
cookies = this.cookiesG
};
HttpWebRequest newRequest = connecter.GetNewRequest(connecter.OriginUrl + "/work/faster/captcha/" + this.accountToken, connecter.cookies);
Dictionary<string, string> parameters = new Dictionary<string, string>();
string input = "";
parameters = null;
HttpWebResponse response = connecter.MakeRequest(newRequest, connecter.cookies, parameters, 1);
using (StreamReader reader = new StreamReader(response.GetResponseStream()))
{
if (!reader.EndOfStream)
{
input = input + reader.ReadToEnd();
}
}
response.Close();
this.RES = input;
this.captcha = new JavaScriptSerializer().Deserialize<Dictionary<string, object»(input);
if ((this.captcha != null) && (this.captcha["status"].ToString() == "success"))
{
return true;
}
if (((this.captcha != null) && (this.captcha["error"] != null)) && (this.captcha["error"].ToString() != "null"))
{
this.blocked = true;
}
return false;
}
и в принцыпе ничего сложного, но опишите что вам надо понять, ато за сотню рыться в чужом коде как то больно для достоинства
за сотню не рыться за сотню обяснить код и обговорить дальнейшее действие уже естественно за другую сумму
еще немного но не целый исходник, я обясню что делает программа и что надо добавить и собственно хочу услышать как это сделать. (естественно доделает исполнитель не за 100грн)
It is necessary to add animation to the low-poly main character and give him the ability to hold a weapon (tool) that will aim at the cursor. The game is from a third-person perspective, with the camera behind the player and the cursor in the center of the screen. The character needs to be able to enter aim mode, the camera slightly zooms in, and the character should be able to use the tool (a laser tool for resource gathering). I have a ready animation controller from Synty - Third Person Controller. It can be used or the animation can be completely set up from scratch if that is easier. In the end, I expect a character that can select a tool (one large two-handed and two small ones), switch tools, aim, and have the head and the tool look at the point where the cursor is pointing.