Welcome to the Builder Academy

Question Timed DT

More
31 Mar 2025 23:46 - 31 Mar 2025 23:47 #10629 by cunning
Replied by cunning on topic Timed DT
I had to recreate a patch file and remove all my custom args for it.
Attachments:
Last edit: 31 Mar 2025 23:47 by cunning.

Please Log in or Create an account to join the conversation.

More
02 Apr 2025 15:34 - 02 Apr 2025 15:35 #10630 by JTP
Replied by JTP on topic Timed DT
From:
+  if (!((timer = heart_pulse % (30 * PASSES_PER_SEC))))
+    timed_dt(NULL);

I get this error:

comm.c: In function ‘heartbeat’:
comm.c:1017: error: ‘timer’ undeclared (first use in this function)
comm.c:1017: error: (Each undeclared identifier is reported only once
comm.c:1017: error: for each function it appears in.)
make[1]: *** [comm.o] Error 1


I don't have some of these in my code in limits.c:

+    if (DEAD(vict)) 
+      continue;
+   
+    SET_BIT_AR(AFF_FLAGS(vict), AFF_DT);
+    GET_DT(vict) = GET_ROOM_VNUM(IN_ROOM(vict));
+    GET_DT_DAY(vict) = time(0);
+    GET_DT_COUNT(vict)++;
Last edit: 02 Apr 2025 15:35 by JTP.

Please Log in or Create an account to join the conversation.

More
02 Apr 2025 19:03 #10631 by cunning
Replied by cunning on topic Timed DT
As I stated, I have a vastly modified code base:

in comm.c
void heartbeat()
int timer = 0; -> add


if (DEAD(vict)) -> if (PLR_FLAGGED(vict, PLR_NOTDEADYET))
+ continue;

//IGNORE all of this below, you dont need it.
+ SET_BIT_AR(AFF_FLAGS(vict), AFF_DT);
+ GET_DT(vict) = GET_ROOM_VNUM(IN_ROOM(vict));
+ GET_DT_DAY(vict) = time(0);
+ GET_DT_COUNT(vict)++;

Please Log in or Create an account to join the conversation.

More
02 Apr 2025 19:10 - 02 Apr 2025 19:10 #10632 by JTP
Replied by JTP on topic Timed DT
My regular DT stock code has a return(0);

After the extract

Should the timer DT also have that ?
Last edit: 02 Apr 2025 19:10 by JTP.

Please Log in or Create an account to join the conversation.

More
02 Apr 2025 19:13 #10633 by cunning
Replied by cunning on topic Timed DT
Why? It's a void function, it returns nothing. I am assuming here that you are referencing the void timed_dt() function

Please Log in or Create an account to join the conversation.

More
02 Apr 2025 19:20 #10634 by JTP
Replied by JTP on topic Timed DT
Ok now I get this:

gcc -g -O2 -Wall -c -o limits.o limits.c
limits.c: In function ‘timed_dt’:
limits.c:608: error: ‘struct room_data’ has no member named ‘timed’
limits.c:608: error: ‘struct room_data’ has no member named ‘timed’
limits.c:627: error: ‘struct room_data’ has no member named ‘timed’
limits.c:628: error: ‘struct room_data’ has no member named ‘timed’
limits.c:632: error: ‘struct room_data’ has no member named ‘timed’
make[1]: *** [limits.o] Error 1

Please Log in or Create an account to join the conversation.

Time to create page: 0.223 seconds