Thread Rating:
- 0 Votes - 0 Average
- 1
- 2
- 3
- 4
- 5
Fishing spawn problem
|
Author |
Message |
ograso
Journeyman
Posts: 135
Likes Given: 10
Likes Received: 2 in 2 posts
Joined: May 2014
Reputation: 0
|
Fishing spawn problem
Hey all,
I added mr's in the sphere_region.scp as follows.
Code:
[REGIONTYPE r_default_water t_water]
RESOURCES=0.1 mr_sos_bottle
RESOURCES=60.0 mr_nothing // Most of the time fishing produces nothing.
RESOURCES=10.0 mr_fish1
RESOURCES=10.0 mr_fish2
RESOURCES=10.0 mr_fish3
RESOURCES=10.0 mr_fish4
RESOURCES=10.0 mr_fishxx
RESOURCES=10.0 mr_fishxxx
and also checked areadef in sphere_mapx.scp for r_default_water and everything looks fine. But when I try to catch fish "there are no fish here" mesage appear on screen.
Where is the problem. Did I missed something?
|
|
06-09-2014 03:24 AM |
|
|
ograso
Journeyman
Posts: 135
Likes Given: 10
Likes Received: 2 in 2 posts
Joined: May 2014
Reputation: 0
|
RE: Fishing spawn problem
Now there is an abort message on screen. being abort when try to catch up fish.. anybody clue
Code:
[SKILL 18]
DEFNAME=Skill_Fishing
KEY=Fishing
TITLE=Fisher%s
PROMPT_MSG=What water do you want to fish in?
DELAY=2.0
STAT_STR=40
STAT_INT=30
STAT_DEX=40
BONUS_STR=10
BONUS_DEX=90
BONUS_INT=0
BONUS_STATS=25
ADV_RATE=2.5,50.0,200.0
VALUES=1,30,200
ON=@PreStart
IF (<SRC.FINDLAYER.layer_horse>)
SRC.SYSMESSAGE You can't fish while riding!
return 1
ENDIF
ON=@Fail
src.message <def.scp.fishing_fail>
if <def.scp.Fishing_SeaSerpent> == 0
return 0
endif
if <src.fishing> >= <def.scp.Fishing_MinToDisturbSerpent>
if <r100> <= <def.scp.Fishing_ChanceSeaSerpent>
src.f_disturb_seamonster <targp>
endif
endif
SRC.SYSMESSAGE You fish a while, but fail to catch anything.
ON=@Abort
SRC.SYSMESSAGE You pull your line back in and stop fishing.
(06-09-2014 07:11 AM)Feeh Wrote: is your t_water defined ?
[TYPEDEF t_water]
TERRAIN = 0a8 0ab
TERRAIN = 0136 0137
TERRAIN = 05797 0579c
TERRAIN = 0746e 07485
TERRAIN = 07490 074ab
TERRAIN = 074b5 075d5
yup My defs are as follow
Code:
[TYPEDEF t_water]
TERRAIN = 0a8 0ab
TERRAIN = 0136 0137
TERRAIN = 05797 0579c
TERRAIN = 0746e 07485
TERRAIN = 07490 074ab
TERRAIN = 074b5 075d5
TERRAIN = 064
TERRAIN = 03ff0 03ff3
Its working perfectly When I change the GM ON. but its not working as a player. being abort?
(This post was last modified: 06-09-2014 08:04 AM by ograso.)
|
|
06-09-2014 07:21 AM |
|
|
ograso
Journeyman
Posts: 135
Likes Given: 10
Likes Received: 2 in 2 posts
Joined: May 2014
Reputation: 0
|
RE: Fishing spawn problem
(06-09-2014 05:29 PM)XuN Wrote: Check your Fishing skill, it may be too low.
As I said before, its message appear on screen "You pull your line back in and stop fishing." when I cast a fly. Why the process being abort. I checked to skill but there is no problem at all. but If you do GM ON, you can cathc up fish perfectly
Code:
[SKILL 18]
DEFNAME=Skill_Fishing
KEY=Fishing
TITLE=Fisher%s
PROMPT_MSG=What water do you want to fish in?
DELAY=2.0
STAT_STR=40
STAT_INT=30
STAT_DEX=40
BONUS_STR=10
BONUS_DEX=90
BONUS_INT=0
BONUS_STATS=25
ADV_RATE=2.5,50.0,200.0
VALUES=1,30,200
ON=@PreStart
IF (<SRC.FINDLAYER.layer_horse>)
SRC.SYSMESSAGE You can't fish while riding!
return 1
ENDIF
ON=@Fail
src.message <def.scp.fishing_fail>
if <def.scp.Fishing_SeaSerpent> == 0
return 0
endif
if <src.fishing> >= <def.scp.Fishing_MinToDisturbSerpent>
if <r100> <= <def.scp.Fishing_ChanceSeaSerpent>
src.f_disturb_seamonster <targp>
endif
endif
SRC.SYSMESSAGE You fish a while, but fail to catch anything.
ON=@Abort
SRC.SYSMESSAGE You pull your line back in and stop fishing.
(This post was last modified: 06-09-2014 09:18 PM by ograso.)
|
|
06-09-2014 09:16 PM |
|
|
User(s) browsing this thread: 2 Guest(s)