Forums WoW Modding Support Archives WoWModding Threads [DiscordArchive] Hello I'm actually seeking help with an addon f...

[DiscordArchive] Hello I'm actually seeking help with an addon f...

[DiscordArchive] Hello I'm actually seeking help with an addon f...

Pages (2): 1 2 Next
rektbyfaith
Administrator
0
12-18-2024, 10:39 PM
#1
Archived author: Needle • Posted: 2024-12-18T22:39:08.747000+00:00
Original source

rektbyfaith
12-18-2024, 10:39 PM #1

Archived author: Needle • Posted: 2024-12-18T22:39:08.747000+00:00
Original source

rektbyfaith
Administrator
0
12-18-2024, 10:39 PM
#2
Archived author: Needle • Posted: 2024-12-18T22:39:09.613000+00:00
Original source

Thread automatically created by AVRPearn in <#415944535718494208>
rektbyfaith
12-18-2024, 10:39 PM #2

Archived author: Needle • Posted: 2024-12-18T22:39:09.613000+00:00
Original source

Thread automatically created by AVRPearn in <#415944535718494208>

rektbyfaith
Administrator
0
12-18-2024, 10:57 PM
#3
Archived author: AVRPearn • Posted: 2024-12-18T22:57:00.592000+00:00
Original source

<@95628962855653376> should we move the discussion of my addon here?
rektbyfaith
12-18-2024, 10:57 PM #3

Archived author: AVRPearn • Posted: 2024-12-18T22:57:00.592000+00:00
Original source

<@95628962855653376> should we move the discussion of my addon here?

rektbyfaith
Administrator
0
12-18-2024, 10:57 PM
#4
Archived author: ReynoldsCahoon • Posted: 2024-12-18T22:57:25.500000+00:00
Original source

Yeah, let's do that. Not sure why I couldn't see this one.
rektbyfaith
12-18-2024, 10:57 PM #4

Archived author: ReynoldsCahoon • Posted: 2024-12-18T22:57:25.500000+00:00
Original source

Yeah, let's do that. Not sure why I couldn't see this one.

rektbyfaith
Administrator
0
12-18-2024, 10:58 PM
#5
Archived author: AVRPearn • Posted: 2024-12-18T22:58:20.844000+00:00
Original source

No worries
rektbyfaith
12-18-2024, 10:58 PM #5

Archived author: AVRPearn • Posted: 2024-12-18T22:58:20.844000+00:00
Original source

No worries

rektbyfaith
Administrator
0
12-18-2024, 10:58 PM
#6
Archived author: AVRPearn • Posted: 2024-12-18T22:58:25.748000+00:00
Original source

in case you missed it
[Image: image.png?ex=690c7f51&is=690b2dd1&hm=f30...0c5a5cd83&]
rektbyfaith
12-18-2024, 10:58 PM #6

Archived author: AVRPearn • Posted: 2024-12-18T22:58:25.748000+00:00
Original source

in case you missed it
[Image: image.png?ex=690c7f51&is=690b2dd1&hm=f30...0c5a5cd83&]

rektbyfaith
Administrator
0
12-18-2024, 10:59 PM
#7
Archived author: AVRPearn • Posted: 2024-12-18T22:59:00.296000+00:00
Original source

I checked the addons button at the login screen and it does see the addon
rektbyfaith
12-18-2024, 10:59 PM #7

Archived author: AVRPearn • Posted: 2024-12-18T22:59:00.296000+00:00
Original source

I checked the addons button at the login screen and it does see the addon

rektbyfaith
Administrator
0
12-18-2024, 11:28 PM
#8
Archived author: ReynoldsCahoon • Posted: 2024-12-18T23:28:00.805000+00:00
Original source

```lua
if ridingSK >= 75 then
r = seaTurtle()
if IsSwimming() then
runawayChk = 500
--PrintHelp("Is swiming", "FF00ffff")
end
--PrintHelp("pre if" .. r, "FF00ffff")
if r ~= -1 and search =="" and runawayChk == 500 then
--PrintHelp("sea turtle", "FF00ffff")
else
repeat
r = random(numCompanions)
s = TestMount(r, ridingSK, zoneText, canFly, flying, qiraji, searchMount, debug, inLocation, repeatChk, zoneChk)
runawayChk = runawayChk + 1 --No mounts found after 1000 trys so just quit otherwise it will lock up
if runawayChk > 1000 then
s = true
elseif runawayChk > 750 then
zoneChk = false
elseif runawayChk > 500 then --no acceptable mounts found in the first 500 trys so turn off can fly
canFly = false
elseif repeatChk and runawayChk > 250 then --Turn off repeatChk if no usable mounts are found within the first 250 checks
repeatChk = false
end
until s == true
end
if runawayChk > 1000 then
PrintHelp("No usable mounts found", "FFff0000")
```

I don't have the time or means to review how this works fully, but it seems terribly inefficient <:reynolLUL:428789513154723850>
rektbyfaith
12-18-2024, 11:28 PM #8

Archived author: ReynoldsCahoon • Posted: 2024-12-18T23:28:00.805000+00:00
Original source

```lua
if ridingSK >= 75 then
r = seaTurtle()
if IsSwimming() then
runawayChk = 500
--PrintHelp("Is swiming", "FF00ffff")
end
--PrintHelp("pre if" .. r, "FF00ffff")
if r ~= -1 and search =="" and runawayChk == 500 then
--PrintHelp("sea turtle", "FF00ffff")
else
repeat
r = random(numCompanions)
s = TestMount(r, ridingSK, zoneText, canFly, flying, qiraji, searchMount, debug, inLocation, repeatChk, zoneChk)
runawayChk = runawayChk + 1 --No mounts found after 1000 trys so just quit otherwise it will lock up
if runawayChk > 1000 then
s = true
elseif runawayChk > 750 then
zoneChk = false
elseif runawayChk > 500 then --no acceptable mounts found in the first 500 trys so turn off can fly
canFly = false
elseif repeatChk and runawayChk > 250 then --Turn off repeatChk if no usable mounts are found within the first 250 checks
repeatChk = false
end
until s == true
end
if runawayChk > 1000 then
PrintHelp("No usable mounts found", "FFff0000")
```

I don't have the time or means to review how this works fully, but it seems terribly inefficient <:reynolLUL:428789513154723850>

rektbyfaith
Administrator
0
12-18-2024, 11:29 PM
#9
Archived author: AVRPearn • Posted: 2024-12-18T23:29:03.587000+00:00
Original source

Hrm. Maybe try a different addon then
rektbyfaith
12-18-2024, 11:29 PM #9

Archived author: AVRPearn • Posted: 2024-12-18T23:29:03.587000+00:00
Original source

Hrm. Maybe try a different addon then

rektbyfaith
Administrator
0
12-18-2024, 11:32 PM
#10
Archived author: ReynoldsCahoon • Posted: 2024-12-18T23:32:59.999000+00:00
Original source

Given this one a try? https://www.curseforge.com/wow/addons/go...les/447090
[Embed: GoGoMount]
One-key solution for mounting/dismounting, supports spells, shapeshifting
1.2M Downloads | Addons
https://www.curseforge.com/wow/addons/go...les/447090
rektbyfaith
12-18-2024, 11:32 PM #10

Archived author: ReynoldsCahoon • Posted: 2024-12-18T23:32:59.999000+00:00
Original source

Given this one a try? https://www.curseforge.com/wow/addons/go...les/447090
[Embed: GoGoMount]
One-key solution for mounting/dismounting, supports spells, shapeshifting
1.2M Downloads | Addons
https://www.curseforge.com/wow/addons/go...les/447090

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