1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # mod_isample
- !input mod entry point here. this will be checked on every location, please keep it clean and brief to avoid game lag
- !entry point 1: if player is on bed, create a new link to make her sleepy
- if $curloc =
- if pcs_sleep > 80:
-
- else
-
- end
- end
- !entry point 2: goto school directly from room
- !Note that location name are case sensetive. you can use lcase() or ucase() to prevent bug
- if lcase($curloc) =
- act
- end
- !entry point 3: replace exit room act in apartment
- if $curloc =
- delact
- act
- msg
- minut += 1 & gt
- end
- end
- !entry point 4: access in-mod location
- if $curloc =
- act
- gt
- end
- end
- if $curloc =
- act
- *clr & cla
-
- gs
- end
- end
- --- mod_isample ---------------------------------
|