Search the Community
Showing results for tags 'addon help'.
Found 2 results
-
Hello All, I'm new to building addons in Arma. I have gotten cfgpatches built to modify and addon user actions to vehicles, however I'm trying to build and addon for Arma to use a .dll to send data to a local UDP server. The build works but when launching Arma it says that it cannot find the function. I've tried a bunch of file path changes but I'm not having any luck. Could someone look at my code please and see where I might be going wrong? Thanks in advance. Here's the addon. File Folder UDPClient class CfgPatches { class UDPClient { units[] = {}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {}; author = "Griz"; name = "UDP Client"; url = ""; }; }; class CfgFunctions { class UDPClient { class UdpSender { file = "UdpSender"; class Send {}; }; }; }; ............ Here is the script for my .dll written in c# using System; using System.Net; using System.Net.Sockets; public class UdpSender { public static void Send(string message, int port, string ipAddress) { UdpClient udpClient = new UdpClient(); IPEndPoint serverEndpoint = new IPEndPoint(IPAddress.Parse(ipAddress), port); byte[] data = System.Text.Encoding.ASCII.GetBytes(message); udpClient.Send(data, data.Length, serverEndpoint); IPEndPoint remoteEndpoint = new IPEndPoint(IPAddress.Any, 0); byte[] receiveData = udpClient.Receive(ref remoteEndpoint); string receiveMessage = System.Text.Encoding.ASCII.GetString(receiveData); Console.WriteLine("Received response from server: " + receiveMessage); } }
-
Hi ! Im working on an addon (Slovak Armed Forces) for some time now. Originaly it was supposed to be only retexture, but then i started to learn with Blender and manage to make myself a model of vehicle. (The vehicle its named Aligator, interesting looking vehicle used by Slovak Armed Forces) I even manage to make it workable in game, but the vehicle has still no textures and they are some other things too that need to be finnished. So I decide to try find help in the community as on the internet I cannot find many tutorials or i cannot understand them. So if someone its interested in helping me with this project or even finnishing it himself please PM me here on the forum, sadly I cannot promise anything else then to be mentioned in the credits and became a part of the team.
- 1 reply
-
- modeler help
- addon help
-
(and 1 more)
Tagged with: