SphereCommunity
Fishing spawn problem - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Fishing spawn problem (/Thread-Fishing-spawn-problem)

Pages: 1 2


Fishing spawn problem - ograso - 06-09-2014 03:24 AM

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?


RE: Fishing spawn problem - Mordaunt - 06-09-2014 04:34 AM

Increase the numbers for your fish


RE: Fishing spawn problem - ograso - 06-09-2014 05:12 AM

(06-09-2014 04:34 AM)Mordaunt Wrote:  Increase the numbers for your fish

I did what you say and "there are no fisht" mesages dissappear but I cant catch up any fish Sad

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=100.0 mr_fish1
RESOURCES=100.0 mr_fish2
RESOURCES=100.0 mr_fish3
RESOURCES=100.0 mr_fish4
RESOURCES=100.0 mr_fishxx
RESOURCES=100.0 mr_fishxxx

[REGIONTYPE r_water t_water]
RESOURCES=0.1 mr_sos_bottle
//RESOURCES=0.2 mr_footwear
RESOURCES=60.0 mr_nothing
RESOURCES=100.0 mr_fish1
RESOURCES=100.0 mr_fish2
RESOURCES=100.0 mr_fish3
RESOURCES=100.0 mr_fish4
RESOURCES=100.0 mr_fishxx
RESOURCES=100.0 mr_fishxxx



RE: Fishing spawn problem - htid4life - 06-09-2014 05:36 AM

try removing this part

RESOURCES=60.0 mr_nothing


RE: Fishing spawn problem - ograso - 06-09-2014 05:44 AM

(06-09-2014 05:36 AM)htid4life Wrote:  try removing this part

RESOURCES=60.0 mr_nothing

tried but nothing changed.


RE: Fishing spawn problem - darksun84 - 06-09-2014 06:22 AM

try to restart server also Big Grin


RE: Fishing spawn problem - Feeh - 06-09-2014 07:11 AM

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


RE: Fishing spawn problem - ograso - 06-09-2014 07:21 AM

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?


RE: Fishing spawn problem - XuN - 06-09-2014 05:29 PM

Check your Fishing skill, it may be too low.


RE: Fishing spawn problem - ograso - 06-09-2014 09:16 PM

(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.