aresyournightmare
Beiträge von Syreldar
-
-
Hi, contact me if you want.
Bitte melden Sie sich an, um diesen Link zu sehen.
-
My problem is on the Bio Quest, if i give the npc the Bio item there is no duration till the next item i give the npc.
Could you check out the 2. Quest i did post on the top and look for the problem why there is no duration.Thanks
Same error for every single bio quest? If yes, post it on a site like pastebin, or use the right format, so i can look into it.
-
Hi, could you please write in English? So I can help you.
-
Hello, could you please write in English? So I can help you!
-
It's so easy to code a clean and readable script, idk how can there still be people unable to properly do it in 2017.
Whatever, here's your script, but next time, tell that "mt2pro" guy to properly learn how to code before actually giving away this kind of works.
Java- quest anOS_kill_system begin
- state start begin
- when kill with game.get_event_flag("anOS_STAT") == 1 and not npc.is_pc() and math.random(50) == 1 begin
- game.drop_item_with_ownership(299, 1);
- end -- when
- when 20095.chat."GM: Drop System" with pc.is_gm() begin
- local flag = game.get_event_flag("anOS_STAT");
- local status = {
- [0] = "Disabled",
- [1] = "Enabled"
- };
- say_title(string.format("%s:[ENTER]", mob_name(npc.get_race())))
- say(string.format("Hello, %s.[ENTER]", pc.get_name()))
- say(string.format("Status: %s.[ENTER]", status[flag]))
- say_reward("What do you want to do?[ENTER]")
- local sel = select("Disable it", "Enable it", "Back");
- if (sel ~= 3) then
- say_title(string.format("%s:[ENTER]", mob_name(npc.get_race())))
- if (sel == flag+1) then
- say_reward(string.format("The system is already %s.[ENTER]", status[flag]))
- else
- say_reward(string.format("The system has been %s.[ENTER]", status[sel-1]))
- game.set_event_flag("anOS_STAT", sel-1);
- end -- if/else
- end -- if
- end -- when
- end -- state
- end -- quest
-
-
oh god..
improper use of the if's,
pc.setqf("guthaben"), pc.getqf("guthaben")+x)
bad placed end's. -
Java
- quest change_empire begin
- state start begin
- when letter begin
- send_letter("Change Kingdom");
- end -- when
- when button or info begin begin
- say_title("Change Kingdom:[ENTER]")
- say("By continuing, you'll be able to change your empire.[ENTER]")
- say("Are you sure?[ENTER]")
- if (select("Yes, I am", "No, thanks") ~= 2) then
- say_title("Change Kingdom:[ENTER]")
- if (pc.is_engaged()) then
- say_reward("You can't change your empire cause you")
- say_reward("are about to get married.[ENTER]")
- return;
- elseif (pc.is_married()) then
- say_reward("You can't change your empire cause you")
- say_reward("are married.[ENTER]")
- return;
- elseif (pc.is_polymorphed()) then
- say_reward("You can't change your empire cause you")
- say_reward("are polymorphed.[ENTER]")
- return;
- end -- if/elseif
- say("Select your new empire:[ENTER]")
- local emp = select(
- "Shinsoo",
- "Chunjo",
- "Jinno",
- "I've changed my mind"
- );
- if (emp ~= 4) then
- say_title("Change Kingdom:[ENTER]")
- local ret = pc.change_empire(emp);
- if (ret == 1) then
- say_reward("You can't change your empire cause you already")
- say_reward("belong to the selected empire.[ENTER]")
- return;
- elseif (ret == 2) then
- say_reward("You can't change your empire cause you or other")
- say_reward("characters in your account are members/leaders of a guild.[ENTER]")
- return;
- elseif (ret == 3) then
- say_reward("You can't change your empire cause you divorced")
- say_reward("less than 24 hours ago.[ENTER]")
- return;
- end -- if/elseif
- say("You successfully changed your empire.[ENTER]")
- else
- send_letter("Change Kingdom");
- end -- if/else
- end -- if
- end -- when
- end -- state
- end -- quest
-
Hi, could you explain in English what you're looking for?
-
-
Bitte melden Sie sich an, um dieses Bild zu sehen.
doesnt work
The problem is on your end: Bitte melden Sie sich an, um diesen Link zu sehen. -
i'm test this system but have this error :
Bitte melden Sie sich an, um diesen Link zu sehen.not have sysser in client/database and not have error with compile source
You are doing something wrong in the client, i've got this system in my server and works perfectly.
-
The link works perfectly.
-
SYSERR: Apr 2 15:39:02 :: checkpointing: CHECKPOINT shutdown: tics did not updated.
That's what is crashing your core.
-
It's not an error, it's a warning, the max MALL_BONUS a single player can have is 100, thus it will be set to 100 even if you set it higher, and if higher it will output a warning, the one you've got.
-
Never.. No Way i will not do this again with your system you can see it in "PremiumLike" Files
Scale doesnt work , The Absorbation Rate does not show up.. so i want to implentate this system not thisIf it didn't work, the other 300+ people who used it would have told me in the topic, hence it's your fault.
-
Please install this system, it's fully working and publicly released.
Bitte melden Sie sich an, um diesen Link zu sehen.
-
Thanks Veggy!
-
You can't do that by quest without a query, which is not exactly the best way to deal with that.