Search found 41 matches

by quietlyquietly
27 Jun 2025, 07:24
Forum: Contributing & Testing
Topic: How to push to GIT repository.
Replies: 10
Views: 1158

Re: How to push to GIT repository.

That second version of the same link is still: 404 page not found. I can copy/paste it just fine, or even click on it, and I still get 404. https://git.themanaworld.org/tmw/tmwa/-/merge_requests I tried: https://git.themanaworld.org/tmw/tmwa/merge_requests which redirected to: https://git.themanawor...
by quietlyquietly
26 Jun 2025, 07:04
Forum: Contributing & Testing
Topic: How to push to GIT repository.
Replies: 10
Views: 1158

Re: How to push to GIT repository.

Force pushed to tmwAthena_qq. GIT was refusing to allow my commit earlier, I did not know why or what to do about it, so I did try --amend because this seemed like it would amend the previous qq001. I really do not know why GIT refused the commit (it was a simple edit to remove the old code), why --...
by quietlyquietly
25 Jun 2025, 11:06
Forum: Contributing & Testing
Topic: How to push to GIT repository.
Replies: 10
Views: 1158

Re: How to push to GIT repository.

I edit the patch again to remove the old code. Had to add the file because GIT refused to commit my edits. git add src/map/script-fun.cpp git commit -m "qq001 remove old code" git diff master qq001 > ../git_patches/qq001d.diff git push tmwAthena_qq qq001 [ [ rejected] qq001 --> qq001 (non-...
by quietlyquietly
25 Jun 2025, 10:09
Forum: Contributing & Testing
Topic: How to push to GIT repository.
Replies: 10
Views: 1158

Re: How to push to GIT repository.

Maybe this URL could help: https://git.themanaworld.org/tmw/tmwa/- ... quests/new ===> 404, not found. The instructions for issuing a merge request seems to be missing the context where this is done. I have to guess that the only place where it might make sense is if I change to the tmwAthena master...
by quietlyquietly
24 Jun 2025, 08:07
Forum: Contributing & Testing
Topic: How to push to GIT repository.
Replies: 10
Views: 1158

Re: How to push to GIT repository.

OK, I got it pushed and submitted a merge request. I already had tmwAthena_qq setup as that remote so I used it. git push tmwAthena_qq qq001 I assume that I can also do a pull on that remote repository. One thing that bothers me, is how does changes to the repository get updated in my clone. I could...
by quietlyquietly
21 Jun 2025, 09:05
Forum: Contributing & Testing
Topic: How to push to GIT repository.
Replies: 10
Views: 1158

How to push to GIT repository.

I have a patch ready for the server code. I have gotten the GIT account. I have set up there a separate fork of the repository called tmwAthena_qq. I have entered it into my local GIT as a remote. My first patch currently resides in my tmwAthena clone as branch qq001, but it will not allow me to pus...
by quietlyquietly
10 Jun 2025, 03:54
Forum: Contributing & Testing
Topic: Script reference Version 1.02
Replies: 7
Views: 1204

Re: Script reference Version 1.02

Have a GIT account. Of course this means I am now fighting with GIT trying to get it to do something useful.

by quietlyquietly
07 Jun 2025, 20:35
Forum: Support & Bug reports
Topic: variables go away
Replies: 10
Views: 1871

Re: variables go away

Email to request GIT account has been sent.

by quietlyquietly
07 Jun 2025, 20:15
Forum: Contributing & Testing
Topic: Script reference Version 1.02
Replies: 7
Views: 1204

Re: Script reference Version 1.02

Is there any way I can upload this as a file.
The forum does not allow posting the entire thing because it is 3x too long.
I already have made changes, ver 1.03.

by quietlyquietly
07 Jun 2025, 07:52
Forum: Support & Bug reports
Topic: variables go away
Replies: 10
Views: 1871

Re: variables go away

Yea, GIT login says that I have to get someone to get me a GIT account.

by quietlyquietly
06 Jun 2025, 20:46
Forum: Support & Bug reports
Topic: variables go away
Replies: 10
Views: 1871

Re: variables go away

I just tried to debug the mobinfo command. EDIT: Disregard mobinfo problem, was missing a $, and eventually got it to work, somewhat. Still don't like the implementation. Investigated the mobinfo code. Something seems to be hidden as a side effect of something called "wrap". This is all ov...
by quietlyquietly
06 Jun 2025, 18:38
Forum: Support & Bug reports
Topic: variables go away
Replies: 10
Views: 1871

Re: variables go away

The main question that I see, is if the manaworld community is willing to let me loose in the code, because I already see so many things that I would replace with more sensible constructs. I have been doing game coding for many years, and our programming prioritizes readability and correctness, whic...
by quietlyquietly
06 Jun 2025, 12:46
Forum: Support & Bug reports
Topic: variables go away
Replies: 10
Views: 1871

Re: variables go away

I have been debugging my script for hours and hours each day. It has been more than once that I found out that some variable value had gone-away on me across a function call because that function asked the user a question. This script language has many more gotcha's in it. Here are some more: Hex nu...
by quietlyquietly
03 Jun 2025, 09:11
Forum: Support & Bug reports
Topic: Bug in script function cleararray, tmwAthena server code
Replies: 7
Views: 1185

Re: Bug in script function cleararray, tmwAthena server code

I have looked at the GIT repository, and like all GIT repositories that I have had to interact with, I cannot see how to do anything with it without having to totally invest in it. I do not use GIT for anything else and really did not want to have to adopt the GIT way of doing everything too.

by quietlyquietly
03 Jun 2025, 08:39
Forum: Support & Bug reports
Topic: variables go away
Replies: 10
Views: 1871

variables go away

I was writing some scripts and got strange failures. Testing revealed that the .@ variables (local scope) were losing their values when menu or input commands were used. I am guessing that to execute menu or input, the script engine stops execution. Upon getting an answer from the client it uses a n...