Forums WoW Modding Support Archives Azerothcore Discord Archives [DiscordArchive] Just out of curiosity, why haven't these been updated for the modules (on your own git) together wit

[DiscordArchive] Just out of curiosity, why haven't these been updated for the modules (on your own git) together wit

[DiscordArchive] Just out of curiosity, why haven't these been updated for the modules (on your own git) together wit

Pages (5): Previous 1 2 3 4 5 Next
rektbyfaith
Administrator
0
02-24-2025, 06:12 PM
#31
Archived author: Takenbacon • Posted: 2025-02-24T18:12:26.085000+00:00
Original source

just like configs (beyond the file loader stuff mentioned that I'm not touching) - they're accessed through world class which is kind of an ugly dependency. technically that won't be needed anymore but I'm not changing that for compatibility and making it so I don't have to update _every_ config value call lol
rektbyfaith
02-24-2025, 06:12 PM #31

Archived author: Takenbacon • Posted: 2025-02-24T18:12:26.085000+00:00
Original source

just like configs (beyond the file loader stuff mentioned that I'm not touching) - they're accessed through world class which is kind of an ugly dependency. technically that won't be needed anymore but I'm not changing that for compatibility and making it so I don't have to update _every_ config value call lol

rektbyfaith
Administrator
0
02-24-2025, 06:28 PM
#32
Archived author: nl-saw • Posted: 2025-02-24T18:28:01.474000+00:00
Original source

btw, would you guys mind merging https://github.com/azerothcore/azerothco...pull/21288 ?
[Embed: fix(Core/Threading) Refactored Map class - some code optimization b...]
Changed i_scriptLock to mutex and some general code refactoring

Changes Proposed:

Removed unnecessary iteration
Some code cleaning

This PR proposes changes to:

Core (units, players, creatures,...
https://github.com/azerothcore/azerothco...pull/21288
rektbyfaith
02-24-2025, 06:28 PM #32

Archived author: nl-saw • Posted: 2025-02-24T18:28:01.474000+00:00
Original source

btw, would you guys mind merging https://github.com/azerothcore/azerothco...pull/21288 ?
[Embed: fix(Core/Threading) Refactored Map class - some code optimization b...]
Changed i_scriptLock to mutex and some general code refactoring

Changes Proposed:

Removed unnecessary iteration
Some code cleaning

This PR proposes changes to:

Core (units, players, creatures,...
https://github.com/azerothcore/azerothco...pull/21288

rektbyfaith
Administrator
0
02-24-2025, 07:49 PM
#33
Archived author: Takenbacon • Posted: 2025-02-24T19:49:05.449000+00:00
Original source

<@809238294595502111> alright you regex pro, can you modify your original example (https://regex101.com/r/OdqyXB/1)
[Embed: regex101: build, test, and debug regex]
Regular expression tester with syntax highlighting, explanation, cheat sheet for PHP/PCRE, Python, GO, JavaScript, Java, C#/.NET, Rust.
https://regex101.com/r/OdqyXB/1
rektbyfaith
02-24-2025, 07:49 PM #33

Archived author: Takenbacon • Posted: 2025-02-24T19:49:05.449000+00:00
Original source

<@809238294595502111> alright you regex pro, can you modify your original example (https://regex101.com/r/OdqyXB/1)
[Embed: regex101: build, test, and debug regex]
Regular expression tester with syntax highlighting, explanation, cheat sheet for PHP/PCRE, Python, GO, JavaScript, Java, C#/.NET, Rust.
https://regex101.com/r/OdqyXB/1

rektbyfaith
Administrator
0
02-24-2025, 07:49 PM
#34
Archived author: Kitzunu • Posted: 2025-02-24T19:49:31.456000+00:00
Original source

This is what chatgpt is for <:kek:1065379143887372398>
rektbyfaith
02-24-2025, 07:49 PM #34

Archived author: Kitzunu • Posted: 2025-02-24T19:49:31.456000+00:00
Original source

This is what chatgpt is for <:kek:1065379143887372398>

rektbyfaith
Administrator
0
02-24-2025, 07:49 PM
#35
Archived author: Takenbacon • Posted: 2025-02-24T19:49:48.694000+00:00
Original source

would that actually work lol
rektbyfaith
02-24-2025, 07:49 PM #35

Archived author: Takenbacon • Posted: 2025-02-24T19:49:48.694000+00:00
Original source

would that actually work lol

rektbyfaith
Administrator
0
02-24-2025, 07:51 PM
#36
Archived author: Honey • Posted: 2025-02-24T19:51:32.858000+00:00
Original source

> Build me a regex that searches a file for words with 12 or more letters and the 2nd letter from the right neds to be a capital C

Here is a regular expression that matches words with 12 or more letters where the 2nd letter from the right is an uppercase 'C':

```regex
\b\w{10,}C\w\b
Explanation:

\b: Word boundary to ensure we match whole words.
\w{10,}: Match any word character (alphanumeric and underscore) 10 or more times.
C: Match an uppercase 'C'.
\w: Match any word character (alphanumeric and underscore).
\b: Word boundary to ensure we match whole words.
```
rektbyfaith
02-24-2025, 07:51 PM #36

Archived author: Honey • Posted: 2025-02-24T19:51:32.858000+00:00
Original source

> Build me a regex that searches a file for words with 12 or more letters and the 2nd letter from the right neds to be a capital C

Here is a regular expression that matches words with 12 or more letters where the 2nd letter from the right is an uppercase 'C':

```regex
\b\w{10,}C\w\b
Explanation:

\b: Word boundary to ensure we match whole words.
\w{10,}: Match any word character (alphanumeric and underscore) 10 or more times.
C: Match an uppercase 'C'.
\w: Match any word character (alphanumeric and underscore).
\b: Word boundary to ensure we match whole words.
```

rektbyfaith
Administrator
0
02-24-2025, 07:51 PM
#37
Archived author: Honey • Posted: 2025-02-24T19:51:51.070000+00:00
Original source

Now you tell me if it worked
rektbyfaith
02-24-2025, 07:51 PM #37

Archived author: Honey • Posted: 2025-02-24T19:51:51.070000+00:00
Original source

Now you tell me if it worked

rektbyfaith
Administrator
0
02-24-2025, 07:52 PM
#38
Archived author: Kitzunu • Posted: 2025-02-24T19:52:57.212000+00:00
Original source

I use it for regex all the time
rektbyfaith
02-24-2025, 07:52 PM #38

Archived author: Kitzunu • Posted: 2025-02-24T19:52:57.212000+00:00
Original source

I use it for regex all the time

rektbyfaith
Administrator
0
02-24-2025, 07:53 PM
#39
Archived author: Kitzunu • Posted: 2025-02-24T19:53:52.744000+00:00
Original source

All the codestyle regex are built from chatgpt
rektbyfaith
02-24-2025, 07:53 PM #39

Archived author: Kitzunu • Posted: 2025-02-24T19:53:52.744000+00:00
Original source

All the codestyle regex are built from chatgpt

rektbyfaith
Administrator
0
02-24-2025, 08:01 PM
#40
Archived author: Sogla • Posted: 2025-02-24T20:01:51.260000+00:00
Original source

modify into what
rektbyfaith
02-24-2025, 08:01 PM #40

Archived author: Sogla • Posted: 2025-02-24T20:01:51.260000+00:00
Original source

modify into what

Pages (5): Previous 1 2 3 4 5 Next
Recently Browsing
 
Recently Browsing