Jump to content

Jcy

Contributors
  • Posts

    216
  • Joined

  • Last visited

  • Days Won

    1

Jcy last won the day on September 25 2019

Jcy had the most liked content!

1 Follower

Contact Methods

  • Website URL
    https://wildclawinteractive.com
  • Discord
    @jcy

Profile Information

  • Gender
    Male
  • Location
    Quebec

Profile Fields

  • My Project
    EasyBox / Archaic
  • Steam ID
    Jcy

Recent Profile Visitors

10693 profile views
  1. I found: foreach (MapInstance eventMap in Maps.MapInstance.Lookup.Values) { foreach (var en in eventMap.LocalEntities) { if (en.Value == null) { continue; } if (en.Value.MapId == map && en.Value.X == x && en.Value.Y == y) { if (en.Value is Event) { //Talk to Event PacketSender.SendActivateEvent(en.Key); AttackTimer = Timing.Global.Milliseconds + CalculateAttackTime(); return true; } } } } In Player.cs, this was it, and I managed to do the changes.
  2. Hey there, Been looking for awhile now, I can't seem to find the piece of code that handles the AttackInteract input, when you activate an event via the Attackinteract key. I would like to change that key. Where is this located? Thanks!
  3. Step 1: You would need to modify the client's source to do this, adding a button to your main menu (Intersect.Client.Interface.Menu.MainMenu.cs), like so: private readonly Button mWebsiteButton; mWebsiteButton = new Button(mMenuWindow, "WebsiteButton"); mWebsiteButton.SetText(Strings.MainMenu.Website); mWebsiteButton.Clicked += WebsiteButton_Clicked; _______________________________________________________________________________________________________ Step 2: Then, also in (Intersect.Client.Interface.Menu.MainMenu.cs), add a button event, something like: private void WebsiteButton_Click(object sender, EventArgs e) { // Launch browser to ascensiongamedev... System.Diagnostics.Process.Start("http://www.ascensiongamedev.com"); } _______________________________________________________________________________________________________ Step 3: Lastly, in (Intersect.Client.Localisation.Strings.cs , find "public partial struct MainMenu") add the JsonProperty: [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public static LocalizedString Website = @"Website"; _______________________________________________________________________________________________________ Feel free to modify and customize the new button under "WebsiteButton": { , this piece of code will be in your client's resources (yourClient\resources\gui\layouts\menu\MenuWindow.json) Sadly, you need source modifications to add a new button, so if you have some coding knowledge, load up visual studio and follow the steps above. If not, sorry that I couldn't help you
  4. How do i stop this post from sending me thousands of emails everyday?
  5. Jcy

    Build Error

    Apologies, here’s the 6 errors:
  6. I'm trying to build the dev branch and this is aggravating me, I keep getting this over and over:
  7. Fixed it. If anyone has this issue, make sure "NormalSheetAttackFrame" in your server config is 1 frame less than "AttackFrames".
  8. So, there’s a way!
  9. I rly need to fix this. I changed to completely different sprites and a different number of frames. This issue is simply not going away.
  10. it won't show up in the game, what am I doing wrong?
  11. Yep sadly lol
  12. Basically I've downloaded and used a fresh 0.7.0.129 install made a map and just started to get my sprites in but this has been happening. Whenever I move (any sprite I try) and try to attack while moving the sprite disappears for the duration of the attack. If the character simply attacks while he isn't moving the issue does not occur. I have set _attack _weapon _shoot _cast _idle accordingly and everything looks fine on that part. It does not occur with NPC/Mobs even though they use the same sprite size/frames. https://www.ascensiongamedev.com/resources/filehost/c04f9bf42ba396aa1c5b56c0d82e9ca6.mp4
  13. No, but there's a key that automatically selects the nearest targets.
  14. @jcsnider He made the launcher, let's wait for him.
  15. Try and run it as an administrator.
×
×
  • Create New...