Jump to content

[Quest]Denunciar Jugador Dentro Del Juego


rango

Recommended Posts


quest reporthack begin

state start begin

when login begin

set_state(report)

end

end

state report begin

when letter begin

send_letter("Report player")

end

when button or info begin

say_title("Report player")

say("IMPORTANT: abusing this system will lead into a ban!")

say("Here you can report hackers to the staff.")

say("You can report a player for:")

say("Damage hack")

say("Trade bug")

say("Bad language")

say("GM impersonation")

say("Player impersonation")

say("")

say_reward("Are you sure you want to report someone?")

local a = select("Yes","No")

if a == 2 then

return

end

say_title("Report player")

say("IMPORTANT: abusing this system will lead into a ban!")

say("What is the name off the player?")

say("")

say_reward("Try to spell the name correctly.")

local name = input()

if name == "" then

return

end

local u_vid = find_pc_by_name(name)

if u_vid == 0 then

say_title("Report player")

say("IMPORTANT: abusing this system will lead into a ban!")

say("This player is not online.")

return

end

say("What hack/ bug is used?")

local reporter = pc.get_name()

local b = select("Damage hack", "Trade bug", "Bad language", "GM impersonation", "Player impersonation","Don't report")

if b == 1 then

char_log(1, reporter, name)

elseif b == 2 then

char_log(2, reporter, name)

elseif b == 3 then

char_log(3, reporter, name)

elseif b == 4 then

char_log(4, reporter, name)

elseif b == 5 then

char_log(5, reporter, name)

else

return

end

say_title("Report player")

say("IMPORTANT: abusing this system will lead into a ban!")

say("IMPORTANT: your name has been registered too")

say("Thank you for the report")

say("The team will be investigation this person soon.")

say("")

say("Report another player? press 'n'")

end

end

end

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...