Results 1 to 5 of 5
  1. #1
    robme's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    m
    Posts
    70
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed

    [Help] with CS-Assembly DLL.

    Will anyone kind enough to teach me code cs-assembly.dll it would made my day. Pass the knowledge how to code, please for the next generation. It would made my day brighten!!! thanks!
    Last edited by Hunter; 01-28-2016 at 03:22 PM.

  2. #2
    mathew118's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    133
    Reputation
    10
    Thanks
    2,695
    My Mood
    Inspired
    Look all over this forum, it has been told many times.

  3. #3
    robme's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    m
    Posts
    70
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed
    I've looked but i don't get it and stuff how do i inject the codes in the dll and create menu and stuff its too complicated.

  4. #4
    yazamach's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    4
    Quote Originally Posted by robme View Post
    I've looked but i don't get it and stuff how do i inject the codes in the dll and create menu and stuff its too complicated.
    Creating a menu is not done strictly through the Assembly-CSharp file, these are hacks where people make their own DLL and load it through a hook. There's a template hook program on this subforum if you want to try your hand at that, otherwise you can edit an existing one. What I did was use .NET Reflector to export the code of encode's Cocacola.dll (he recently released source however, so take that instead). Open that up in Visual Studio, and you can edit it to your hearts content, and compile it fairly painlessly. Then use the hack just like you would normally except with your own edited DLL. To get an idea of what to add in, here's a neat little bit of code that I don't think (?) is currently released in a hack, however the code for it is out there on another thread:

    Code:
    //***
    //SPAM PRAISE
    //***
    Entity localPlayer = Entity.LocalPlayer;
    foreach (Entity entity in Entity.GetAll())
    {
      if ((localPlayer != entity) && (entity.IsPlayer)) EventManager.CallEvent(new PlayerChatEvent(entity.Controller.Id, "PRAISE THE SUN!"));
    }
    This is a basic stripped down way to send a message as another player. Enclose this in a button, and whenever you press it, every player on the server except you will say "PRAISE THE SUN!" With a little intuition you could change this to be a little more useful and send an individual message from an individual player of your choice.
    Last edited by yazamach; 03-28-2015 at 12:52 PM.

  5. #5
    robme's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    m
    Posts
    70
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed
    not a single clue what are hooks and shit lol i give upppp this is hard holy shit.

Similar Threads

  1. (Help)With coding a Dll file to retreive external data
    By Atomikb34st in forum Call of Duty Modern Warfare 2 Coding / Programming / Source Code
    Replies: 4
    Last Post: 03-31-2012, 05:32 PM
  2. [Help] Help With Code On .DLL
    By cseay1 in forum C++/C Programming
    Replies: 8
    Last Post: 09-23-2011, 11:05 PM
  3. [Request] Help with Dumping Cshell.dll
    By CoderNever in forum Combat Arms Coding Help & Discussion
    Replies: 27
    Last Post: 10-29-2010, 11:14 AM
  4. i need help with the d3dx9_35.dll ?
    By poip0i in forum Combat Arms Help
    Replies: 13
    Last Post: 07-30-2010, 04:55 PM
  5. [Help] HELP with PerX & Wh.Dll ! Please ?
    By MkSingh in forum CrossFire Hacks & Cheats
    Replies: 27
    Last Post: 02-26-2010, 07:58 PM