Sonic1997 发表于 2013-1-18 13:06:14

[未完成][纯事件]新·银行系统

目测仍然在存款的部分坑掉了=-=
先上图...









补充4个比较长的核心脚本部分:


$deposit += $game_variables#记录总存款
$deposit.push($game_variables)#记录单笔存款,变量1是刚才输入的临时变量
$deposit_p.push($p)#记录这笔记录的存期
temp = $game_variables + ( $p * $game_variables )#temp = 现在时间 + 存期 * 游戏周期
$deposit_e.push(temp)#记录这笔记录什么时候到期

if $p == 3
$deposit_info_ir.push($game_variables)
elsif $p == 6
$deposit_info_ir.push($game_variables)
elsif $p == 12
$deposit_info_ir.push($game_variables)
elsif $p == 24
$deposit_info_ir.push($game_variables)
elsif $p == 36
$deposit_info_ir.push($game_variables)
else $p == 60
$deposit_info_ir.push($game_variables)
end
#总体来说就是按照存期分配不同利率

if $p == 3
$temp = $game_variables * $game_variables * $p / 12 / 1000
elsif $p == 6
$temp = $game_variables * $game_variables * $p / 12 / 1000
elsif $p == 12
$temp = $game_variables * $game_variables * $p / 12 / 1000
elsif $p == 24
$temp = $game_variables * $game_variables * $p / 12 / 1000
elsif $p == 36
$temp = $game_variables * $game_variables * $p / 12 / 1000
elsif $p == 60
$temp = $game_variables * $game_variables * $p / 12 / 1000
end
#根据不同存期分配不同的总利息

$deposit_info_i.push($temp)#输入利率
$deposit_info_s += 1#记录存款次数


变量解释:
$deposit = 总金额
$deposit_info = 每一笔金额
$deposit_info_p = 存款周期
$deposit_info_e = 存款到期
$deposit_info_a = 是否自动续存
$deposit_info_ir = 利率
$deposit_info_i = 到期后应该出现的利息
$deposit_s = 存款次数
$account = 如果是0就是没用过银行,如果是1就用过了

问题是...
我现在不懂的银行是怎么运作的...
于是取款部分也就没有办法做了...
球熟悉银行的介绍一下...


工程啥的:

镜子 发表于 2013-1-18 13:11:22

看起来好复杂0皿0

Sonic1997 发表于 2013-1-18 13:16:55

镜子 发表于 2013-1-17 21:11 static/image/common/back.gif
看起来好复杂0皿0

不是特别复杂的了...尝试仔细看看的话或许能看懂= =

delv25 发表于 2013-1-18 17:56:59

{:nm34:}看起来那么长 我感动哭了

Sonic1997 发表于 2013-1-18 23:07:58

delv25 发表于 2013-1-18 01:56 static/image/common/back.gif
看起来那么长 我感动哭了

比纯事件ARPG短多了= =||


顺便补上一些注释= =

lbq 发表于 2013-1-19 03:33:45

Is it better to do this?case $p
when 3
# xxxxxxxx
when 12
# xxxxxxxx
end

Sonic1997 发表于 2013-1-19 08:05:14

lbq 发表于 2013-1-18 11:33 static/image/common/back.gif
Is it better to do this?

似乎不够位置写= =

逍遥 发表于 2013-2-27 13:45:30

.好长.........

Sonic1997 发表于 2013-2-27 13:55:21

逍遥 发表于 2013-2-27 13:45 static/image/common/back.gif
.好长.........

嘛= =
反正坑掉了=-=

orzfly 发表于 2013-3-6 01:01:07

本帖最后由 orzfly 于 2013-3-6 02:26 编辑

id={
3 => 21,
6 => 22,
12 => 23,
24 => 24,
36 => 25,
60 => 26
}[$p]
$deposit_info_ir.push($game_variables)
$temp = $game_variables * $game_variables * $p / 12 / 1000

@lbq这是用来代替他的第2、3段脚本的
页: [1] 2
查看完整版本: [未完成][纯事件]新·银行系统