ⱧØⱠɎ₴₵ⱧɎ₮₮
ⱧØⱠɎ₴₵ⱧɎ₮₮
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 11/22/2024 in #help
Activator.CreateInstance Help!
I used static it only used to start and stop the ModLoader
19 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 11/22/2024 in #help
Activator.CreateInstance Help!
What other way you suggest doing the reference as i have assemblyA < Main trying to access assemblyB thats in a folder called Client i tried just referencing the assemblyB.dll in assemblyA and Declaring it as Using assemblyBnamespace; and change the bool from there but when i attempted to change it nothing happened.. should not put AssemblyB in Client and just build it with AssemblyA and set copy local true???
19 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 11/22/2024 in #help
Activator.CreateInstance Help!
Yes i have control over the code. Its been forked from git with a readme of todo thats never been done.. i like to use it for working on mods
19 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 11/22/2024 in #help
Activator.CreateInstance Help!
That makes sense why everything working fine but the bool being changed
19 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 11/22/2024 in #help
Activator.CreateInstance Help!
Or the Class
19 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 11/22/2024 in #help
Activator.CreateInstance Help!
Oh so your saying this bool needs to be a static
namespace AssemblyB
{
public class Configuration
{
public bool mLoaderStop { get; set; } = false;
}
}
namespace AssemblyB
{
public class Configuration
{
public bool mLoaderStop { get; set; } = false;
}
}
19 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 11/22/2024 in #help
Activator.CreateInstance Help!
I even tried using a snippet on Calling a function SomeMethod using Reflection it gives an error as it doesnt find it i guess i got the somemethod from Pilot. AI
19 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 10/5/2023 in #help
❔ I am Kinda lost right now
Only thing i am stuck at is the list and sending each row via a return data. or should i call on a js function to insert each row that way and js call the html to add the new line..
7 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 10/5/2023 in #help
❔ I am Kinda lost right now
I got all the db written to a LIST and i can console.writeline each row but i done the html got it working .. but now trying to figure out how to get each added row thats in the list inserted into the html via JS
7 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 10/5/2023 in #help
❔ Incurable ERROR ???
Oh shit i am on version 10 not 11 fixed. thanks @🌈 Thinker 🌈
16 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 10/5/2023 in #help
❔ Incurable ERROR ???
That makes no sense at all now its all working as i hit enter to put them in seperate lines. with " + and it still works
16 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 10/5/2023 in #help
❔ Incurable ERROR ???
so its string webpage = "Webpagecode"; webpage showed and worked.
16 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 10/5/2023 in #help
❔ Incurable ERROR ???
Nope same but i figured it out I put it all in one line with out the "code" + next line etc and it worked.
16 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 10/5/2023 in #help
❔ Incurable ERROR ???
11
16 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 10/5/2023 in #help
❔ Incurable ERROR ???
No description
16 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 10/5/2023 in #help
❔ Incurable ERROR ???
@🌈 Thinker 🌈 Raw Strings??? all code is lit in errors
16 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 10/5/2023 in #help
❔ Incurable ERROR ???
Yes so i correct it with the following but then the it doesnt work nothing happens
16 replies
CC#
Created by ⱧØⱠɎ₴₵ⱧɎ₮₮ on 10/5/2023 in #help
❔ Incurable ERROR ???
This is What it wants i guess
"<script type = 'text/javascript'>" +
" var data = " +
"[{{'" +
"'ServerID': 1," +
"'ServerName': 'Default Server'," +
"'ServerPassword': 'UNCHANGEDME'," +
"'ServerCurConnections': '0'," +
"'ServerMaxConnections': '32'," +
"'ServerIP': '127.0.0.1'," +
"'ServerPort': '7728'," +
"'ServerLocked': 'true'" +
"}}] " +
" var container = document.getElementById('Online Servers');" +
" var hot = new Handsontable(container, {{data: "+ HostManagment.GetServerList()+", rowHeaders: true, colHeaders: false," +
" colHeaders: ['ServerID','ServerName','ServerPassword','ServerCurConnections','ServerMaxConnections','ServerIP','ServerPort','ServerLocked'], " +
" columnSorting: true, " +
" sortIndicator: true}});" +
"<script type = 'text/javascript'>" +
" var data = " +
"[{{'" +
"'ServerID': 1," +
"'ServerName': 'Default Server'," +
"'ServerPassword': 'UNCHANGEDME'," +
"'ServerCurConnections': '0'," +
"'ServerMaxConnections': '32'," +
"'ServerIP': '127.0.0.1'," +
"'ServerPort': '7728'," +
"'ServerLocked': 'true'" +
"}}] " +
" var container = document.getElementById('Online Servers');" +
" var hot = new Handsontable(container, {{data: "+ HostManagment.GetServerList()+", rowHeaders: true, colHeaders: false," +
" colHeaders: ['ServerID','ServerName','ServerPassword','ServerCurConnections','ServerMaxConnections','ServerIP','ServerPort','ServerLocked'], " +
" columnSorting: true, " +
" sortIndicator: true}});" +
16 replies