Forums WoW Modding Support Archives TrinityCore Discord Archives [DiscordArchive] Friends, which tool do you use to open .db2 files?

[DiscordArchive] Friends, which tool do you use to open .db2 files?

[DiscordArchive] Friends, which tool do you use to open .db2 files?

Pages (2): 1 2 Next
rektbyfaith
Administrator
0
01-04-2023, 03:18 PM
#1
Archived author: Necropresto • Posted: 2023-01-04T15:18:43.213000+00:00
Original source

Friends, which tool do you use to open .db2 files?
rektbyfaith
01-04-2023, 03:18 PM #1

Archived author: Necropresto • Posted: 2023-01-04T15:18:43.213000+00:00
Original source

Friends, which tool do you use to open .db2 files?

rektbyfaith
Administrator
0
01-04-2023, 03:18 PM
#2
Archived author: Necropresto • Posted: 2023-01-04T15:18:59.762000+00:00
Original source

WDBX Editor aren't working for recent versions
rektbyfaith
01-04-2023, 03:18 PM #2

Archived author: Necropresto • Posted: 2023-01-04T15:18:59.762000+00:00
Original source

WDBX Editor aren't working for recent versions

rektbyfaith
Administrator
0
01-04-2023, 03:20 PM
#3
Archived author: MaxtorCoder • Posted: 2023-01-04T15:20:34.140000+00:00
Original source

https://wow.tools/dbc
https://wago.tools/db2
[Embed: WoW.tools | Database browser]
Web database/DBC browser for World of Warcraft
https://wow.tools/dbc

[Embed: Wago Tools]
https://wago.tools/db2
rektbyfaith
01-04-2023, 03:20 PM #3

Archived author: MaxtorCoder • Posted: 2023-01-04T15:20:34.140000+00:00
Original source

https://wow.tools/dbc
https://wago.tools/db2
[Embed: WoW.tools | Database browser]
Web database/DBC browser for World of Warcraft
https://wow.tools/dbc

[Embed: Wago Tools]
https://wago.tools/db2

rektbyfaith
Administrator
0
01-04-2023, 03:23 PM
#4
Archived author: blacknightt • Posted: 2023-01-04T15:23:14.426000+00:00
Original source

```
function wpb_rand_posts() {

$args = array(
'post_type' => 'post',
'orderby' => 'rand',
'posts_per_page' => 5,
);

$the_query = new WP_Query( $args );

if ( $the_query->have_posts() ) {

$string .= '<ul>';
while ( $the_query->have_posts() ) {
$the_query->the_post();
$string .= '<li><a href="'. get_permalink() .'">'. get_the_title() .'</a></li>';
}
$string .= '</ul>';
/* Restore original Post Data */
wp_reset_postdata();
} else {

$string .= 'no posts found';
}

return $string;
}

add_shortcode('wpb-random-posts','wpb_rand_posts');
add_filter('widget_text', 'do_shortcode');
```
rektbyfaith
01-04-2023, 03:23 PM #4

Archived author: blacknightt • Posted: 2023-01-04T15:23:14.426000+00:00
Original source

```
function wpb_rand_posts() {

$args = array(
'post_type' => 'post',
'orderby' => 'rand',
'posts_per_page' => 5,
);

$the_query = new WP_Query( $args );

if ( $the_query->have_posts() ) {

$string .= '<ul>';
while ( $the_query->have_posts() ) {
$the_query->the_post();
$string .= '<li><a href="'. get_permalink() .'">'. get_the_title() .'</a></li>';
}
$string .= '</ul>';
/* Restore original Post Data */
wp_reset_postdata();
} else {

$string .= 'no posts found';
}

return $string;
}

add_shortcode('wpb-random-posts','wpb_rand_posts');
add_filter('widget_text', 'do_shortcode');
```

rektbyfaith
Administrator
0
01-04-2023, 03:23 PM
#5
Archived author: blacknightt • Posted: 2023-01-04T15:23:27.692000+00:00
Original source

I want to give this code the ability to categorize so that, for example, the dungeon category is only displayed
rektbyfaith
01-04-2023, 03:23 PM #5

Archived author: blacknightt • Posted: 2023-01-04T15:23:27.692000+00:00
Original source

I want to give this code the ability to categorize so that, for example, the dungeon category is only displayed

rektbyfaith
Administrator
0
01-04-2023, 03:24 PM
#6
Archived author: Guybrush • Posted: 2023-01-04T15:24:34.952000+00:00
Original source

Resisting the extremely strong urge to give you a lmgtfy link
rektbyfaith
01-04-2023, 03:24 PM #6

Archived author: Guybrush • Posted: 2023-01-04T15:24:34.952000+00:00
Original source

Resisting the extremely strong urge to give you a lmgtfy link

rektbyfaith
Administrator
0
01-04-2023, 03:25 PM
#7
Archived author: Guybrush • Posted: 2023-01-04T15:25:02.203000+00:00
Original source

your `$args` array can include a `cat` option
rektbyfaith
01-04-2023, 03:25 PM #7

Archived author: Guybrush • Posted: 2023-01-04T15:25:02.203000+00:00
Original source

your `$args` array can include a `cat` option

rektbyfaith
Administrator
0
01-04-2023, 03:25 PM
#8
Archived author: Guybrush • Posted: 2023-01-04T15:25:24.115000+00:00
Original source

where `'cat' => $cat_id`
rektbyfaith
01-04-2023, 03:25 PM #8

Archived author: Guybrush • Posted: 2023-01-04T15:25:24.115000+00:00
Original source

where `'cat' => $cat_id`

rektbyfaith
Administrator
0
01-04-2023, 03:25 PM
#9
Archived author: Guybrush • Posted: 2023-01-04T15:25:37.027000+00:00
Original source

should give you the filter you're looking for
rektbyfaith
01-04-2023, 03:25 PM #9

Archived author: Guybrush • Posted: 2023-01-04T15:25:37.027000+00:00
Original source

should give you the filter you're looking for

rektbyfaith
Administrator
0
01-04-2023, 03:26 PM
#10
Archived author: blacknightt • Posted: 2023-01-04T15:26:00.131000+00:00
Original source

I got this code from somewhere
If you can correct me, because I don't know php at all
rektbyfaith
01-04-2023, 03:26 PM #10

Archived author: blacknightt • Posted: 2023-01-04T15:26:00.131000+00:00
Original source

I got this code from somewhere
If you can correct me, because I don't know php at all

Pages (2): 1 2 Next
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)