Author Topic: C# Compatibility  (Read 6316 times)

0 Members and 1 Guest are viewing this topic.

Offline playforfunTopic starter

  • Restricted
  • **
  • Posts: 28
  • Activity:
    0%
  • Reputation Power: 1
  • playforfun has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
C# Compatibility
« on: January 30, 2019, 11:00:40 PM »
0
Trying to find the SDK for C# for stealthuo and the new Stealth Client, seems everything was removed and dead end links? Is it no longer supported?

Offline ZeroDX

  • Stealth Developer
  • Moderator
  • *****
  • Posts: 34
  • Activity:
    0%
  • Reputation Power: 1
  • ZeroDX has no influence.
  • Respect: +1
  • Referrals: 0
    • View Profile
Re: C# Compatibility
« Reply #1 on: January 30, 2019, 11:15:39 PM »
0
ะก# repo
wait for a few days. will be updated soon

Offline playforfunTopic starter

  • Restricted
  • **
  • Posts: 28
  • Activity:
    0%
  • Reputation Power: 1
  • playforfun has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: C# Compatibility
« Reply #2 on: January 30, 2019, 11:41:45 PM »
0
Noob question: How do I implement this into VisualStudios so I can call for them? thanks.

Offline Tidus

  • Lazy
  • Administrator
  • *
  • *
  • Posts: 1291
  • Activity:
    0%
  • Reputation Power: 15
  • Tidus is working their way up.Tidus is working their way up.Tidus is working their way up.
  • Gender: Male
  • Mind Blown
  • Respect: +151
  • Referrals: 2
    • View Profile
    • Ultimate Apparel
Re: C# Compatibility
« Reply #3 on: January 30, 2019, 11:53:05 PM »
+1
Noob question: How do I implement this into VisualStudios so I can call for them? thanks.

You need to make a reference to it in your Application.  Once you reference the DLL make sure that it accompanies your exe file whenever you compile it and share.
For those who have fought for it, freedom has a taste the protected will never know ~ Anonymous, Vietnam, 1968

Offline playforfunTopic starter

  • Restricted
  • **
  • Posts: 28
  • Activity:
    0%
  • Reputation Power: 1
  • playforfun has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: C# Compatibility
« Reply #4 on: January 31, 2019, 10:27:04 PM »
0
Noob question: How do I implement this into VisualStudios so I can call for them? thanks.

You need to make a reference to it in your Application.  Once you reference the DLL make sure that it accompanies your exe file whenever you compile it and share.

Not sure how to do this, spent the last 20 minutes playing around trying to figure it out, tried dragging and dropping into reference, also curios as to why there is 2 different scrptdotnet folders which seem to contain the same files.

Offline Tidus

  • Lazy
  • Administrator
  • *
  • *
  • Posts: 1291
  • Activity:
    0%
  • Reputation Power: 15
  • Tidus is working their way up.Tidus is working their way up.Tidus is working their way up.
  • Gender: Male
  • Mind Blown
  • Respect: +151
  • Referrals: 2
    • View Profile
    • Ultimate Apparel
For those who have fought for it, freedom has a taste the protected will never know ~ Anonymous, Vietnam, 1968

Offline playforfunTopic starter

  • Restricted
  • **
  • Posts: 28
  • Activity:
    0%
  • Reputation Power: 1
  • playforfun has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: C# Compatibility
« Reply #6 on: January 31, 2019, 11:54:14 PM »
0
I get this error when I try to run a simple hello world script, am I calling upon the API incorrectly?

"Error, Unfinished Socket Stream - Len < 6"



Code: [Select]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ScriptDotNet2;
using ScriptDotNet2.Network;

namespace test1
{
    class Program
    {
        static void Main(string[] args)
        {
            Stealth.Default.Client.UOSay("Hello World.");
        }
    }
}

Offline ZeroDX

  • Stealth Developer
  • Moderator
  • *****
  • Posts: 34
  • Activity:
    0%
  • Reputation Power: 1
  • ZeroDX has no influence.
  • Respect: +1
  • Referrals: 0
    • View Profile
Re: C# Compatibility
« Reply #7 on: February 01, 2019, 02:50:01 AM »
0
ok. i found some bugs
try with this package

Offline playforfunTopic starter

  • Restricted
  • **
  • Posts: 28
  • Activity:
    0%
  • Reputation Power: 1
  • playforfun has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: C# Compatibility
« Reply #8 on: February 01, 2019, 10:40:21 PM »
0
Trying my best to help out here, tried to debug the solution so I could get the .dll in the din folder, but it's not appearing.

Offline ZeroDX

  • Stealth Developer
  • Moderator
  • *****
  • Posts: 34
  • Activity:
    0%
  • Reputation Power: 1
  • ZeroDX has no influence.
  • Respect: +1
  • Referrals: 0
    • View Profile
Re: C# Compatibility
« Reply #9 on: February 05, 2019, 12:01:09 PM »
0
try this. It works fine now.
« Last Edit: February 06, 2019, 08:58:32 AM by ZeroDX »

Offline playforfunTopic starter

  • Restricted
  • **
  • Posts: 28
  • Activity:
    0%
  • Reputation Power: 1
  • playforfun has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: C# Compatibility
« Reply #10 on: February 06, 2019, 11:33:23 PM »
0
Thanks you're the best!

Seems a little obsessive to have to write; Stealth.Default.......

For every call to the API is there a way to shorten this?

Also I'm trying to search the APK for how to call upon the Attack service, can't seem to figure it out.

Tried to do:

Code: [Select]
        ScriptDotNet2.Services.AttackService()
« Last Edit: February 07, 2019, 01:10:56 AM by playforfun »

Offline ZeroDX

  • Stealth Developer
  • Moderator
  • *****
  • Posts: 34
  • Activity:
    0%
  • Reputation Power: 1
  • ZeroDX has no influence.
  • Respect: +1
  • Referrals: 0
    • View Profile
Re: C# Compatibility
« Reply #11 on: February 07, 2019, 07:15:14 AM »
0
sorry, but i can't help with that. i am not the author, i just fixed errors

Tags: