我想创建一个输出特定代码的php脚本。我有这个游戏,我开发了很多东西,但很多都是相同的代码。喜欢类名。
所以我想制作一个PHP脚本,我可以填写案例,并复选哪些类名用什么价格。例如。
必须输出如下内容:
case "civ_car":<--- changeable
{
_return =
[
["B_Quadbike_01_F",3333],<<---- classname followed by a price
["C_Hatchback_01_F",8333],
["C_Offroad_01_F",16666],
["C_SUV_01_F",40000],
["C_Van_01_transport_F",50000],
["C_Hatchback_01_sport_F",53333]<<------ no , here
];
};
价格太奇怪了,因为它们会在游戏中乘以1.5。
但有时需要看起来有点不同:
case "med_shop":<<---- also want this to be changeable
{
_return = [
["C_Hatchback_01_F",5000]<<--- these dont need a ; at the end
];
if(__GETC__(life_mediclevel) >= 2) then <<---- also wanna be able to change the life_mediclevel and the statement behind it.
{
_return pushBack ["C_Van_01_box_F",45224];<<---- these need a ; at the end
};
if(__GETC__(life_mediclevel) >= 3) then
{
_return pushBack ["C_SUV_01_F",50000];
_return pushBack ["C_Offroad_01_F",50000];
};
if(__GETC__(life_mediclevel) >= 4) then
{
_return pushBack ["C_Hatchback_01_sport_F",5000];
};
};
这个php脚本怎么样?如果你们能把我推向正确的方向,我可以做其余的事情。如果你需要JavaScript和/或html 5没问题。
提前致谢,
乔伊