repo_name
stringlengths
6
78
path
stringlengths
4
206
copies
stringclasses
281 values
size
stringlengths
4
7
content
stringlengths
625
1.05M
license
stringclasses
15 values
mercury233/ygopro-scripts
c97584500.lua
4
1910
--ゴーストリック・マミー function c97584500.initial_effect(c) --summon limit local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_CANNOT_SUMMON) e1:SetCondition(c97584500.sumcon) c:RegisterEffect(e1) --turn set local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(97584500,0)) e2:Set...
gpl-2.0
FranciscoCanas/ActionMovie
Jumper/core/grid.lua
1
6099
--[[ Copyright (c) 2012 Roland Yonaba Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute,...
mit
mercury233/ygopro-scripts
c952523.lua
2
2887
--クラリアの蟲惑魔 function c952523.initial_effect(c) --link summon aux.AddLinkProcedure(c,aux.FilterBoolFunction(Card.IsLinkRace,RACE_INSECT+RACE_PLANT),2,2) c:EnableReviveLimit() --immune local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetCode(EFFECT_IMMUNE_E...
gpl-2.0
notcake/gcompute
lua/gcompute/execution/remote/remoteexecutionservice.lua
1
2444
local self = {} GCompute.Execution.RemoteExecutionService = GCompute.MakeConstructor (self, GCompute.Execution.IExecutionService) --[[ Events: CanCreateExecutionContext (authId, hostId, languageName) Fired when an execution context is about to be created. ExecutionContextCreated (IExecutionContext executionCon...
gpl-3.0
Zenny89/darkstar
scripts/zones/Palborough_Mines/npcs/_3z6.lua
58
1142
----------------------------------- -- Elevator in Palborough -- Notes: Used to operate Elevator @3z0 ----------------------------------- package.loaded["scripts/zones/Palborough_Mines/TextIDs"] = nil; ----------------------------------- require("scripts/globals/status"); require("scripts/globals/settings"); re...
gpl-3.0
mercury233/ygopro-scripts
c88494899.lua
2
1897
--氷結界の交霊師 function c88494899.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetRange(LOCATION_HAND) e1:SetCondition(c88494899.spcon) c:RegisterEffect(e1) --effect count local e2=Effect....
gpl-2.0
mercury233/ygopro-scripts
c5309481.lua
2
1242
--蘇りし魔王 ハ・デス function c5309481.initial_effect(c) aux.AddMaterialCodeList(c,33420078) --synchro summon aux.AddSynchroProcedure(c,aux.FilterBoolFunction(Card.IsCode,33420078),aux.NonTuner(Card.IsRace,RACE_ZOMBIE),1) c:EnableReviveLimit() --Disable local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD+EFFECT...
gpl-2.0
Zenny89/darkstar
scripts/globals/items/timbre_timbers_salad.lua
35
1471
----------------------------------------- -- ID: 4321 -- Item: timbre_timbers_salad -- Food Effect: 240Min, All Races ----------------------------------------- -- Magic 20 -- Agility 5 -- Vitality -1 -- Ranged ACC % 8 -- Ranged ACC Cap 15 ----------------------------------------- require("scripts/globals/s...
gpl-3.0
mercury233/ygopro-scripts
c13030280.lua
2
1859
--CX-CHレジェンド・アーサー function c13030280.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,nil,5,3) c:EnableReviveLimit() --battle indes local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetCode(EFFECT_INDESTRUCTABLE_COUNT) e1...
gpl-2.0
mercury233/ygopro-scripts
c61668670.lua
2
2381
--Gゴーレム・クリスタルハート function c61668670.initial_effect(c) c:EnableCounterPermit(0x64) --link summon aux.AddLinkProcedure(c,aux.FilterBoolFunction(Card.IsLinkRace,RACE_CYBERSE),2,2) c:EnableReviveLimit() --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(61668670,0)) e1:SetCategory(CATEG...
gpl-2.0
jefferyto/packages
utils/prometheus-node-exporter-lua/files/usr/lib/lua/prometheus-collectors/nat_traffic.lua
79
1251
local function scrape() -- documetation about nf_conntrack: -- https://www.frozentux.net/iptables-tutorial/chunkyhtml/x1309.html nat_metric = metric("node_nat_traffic", "gauge" ) for e in io.lines("/proc/net/nf_conntrack") do -- output(string.format("%s\n",e )) local fields = space_split(e) local ...
gpl-2.0
mercury233/ygopro-scripts
c11685347.lua
9
1359
--連爆魔人 function c11685347.initial_effect(c) --chain local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetCode(EVENT_CHAINING) e1:SetRange(LOCATION_MZONE) e1:SetOperation(c11685347.chop) c:RegisterEffect(e1) --damage local e2=Effe...
gpl-2.0
mercury233/ygopro-scripts
c58604027.lua
2
4122
--召喚神エクゾディア function c58604027.initial_effect(c) c:EnableReviveLimit() --cannot special summon local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) c:RegisterEffect(e1) --special summon local e2=Ef...
gpl-2.0
mjssw/cuberite
Server/Plugins/APIDump/Classes/WebAdmin.lua
28
2144
return { cWebAdmin = { Desc = "", Functions = { GetHTMLEscapedString = { Params = "string", Return = "string", Notes = "(STATIC) Gets the HTML-escaped representation of a requested string. This is useful for user input and game data that is not guaranteed to be escaped already." }, }, }, -- cWebAdmin ...
apache-2.0
gibtang/CCNSCoding
samples/Lua/TestLua/Resources/luaScript/RotateWorldTest/RotateWorldTest.lua
4
3266
local size = cc.Director:getInstance():getWinSize() local function CreateSpriteLayer() local layer = cc.Layer:create() local x, y x = size.width y = size.height local sprite = cc.Sprite:create(s_pPathGrossini) local spriteSister1 = cc.Sprite:create(s_pPathSister1) local spriteSister2 = cc.Spri...
mit
mercury233/ygopro-scripts
c87468732.lua
2
4433
--変導機咎 クロックアーク function c87468732.initial_effect(c) --pendulum proc aux.EnablePendulumAttribute(c) --left zone local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_UPDATE_LSCALE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_PZONE) e1:SetCondition(c87468732.sccon1) ...
gpl-2.0
AleppoTeam/Aleppo
plugins/lock_badword.lua
17
1307
--[[ # #ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ #:(( # For More Information ....! # Developer : Aziz < @TH3_GHOST > # our channel: @DevPointTeam # Version: 1.1 #:)) #ــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ # ]] lo...
gpl-2.0
mercury233/ygopro-scripts
c45943516.lua
2
3342
--ザ・ロック・オブ・ウォークライ function c45943516.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,45943516+EFFECT_COUNT_CODE_OATH) e1:SetOperation(c45943516.activate) c:RegisterEffect...
gpl-2.0
Zenny89/darkstar
scripts/zones/Selbina/npcs/Boris.lua
38
1030
---------------------------------- -- Area: Selbina -- NPC: Boris -- Type: Item Deliverer -- @pos 61.074 -14.655 -7.1 248 ----------------------------------- package.loaded["scripts/zones/Selbina/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Selbina/TextIDs"); -----------------------...
gpl-3.0
sancus-project/sancus-lua-web
src/lua/sancus/web/resource.lua
1
3400
-- local Class = assert(require"sancus.object").Class local request = assert(require"wsapi.request") local mimeparse = require"mimeparse" local C = Class{ _methods = {'GET', 'HEAD', 'POST', 'PUT', 'DELETE'} } function C:find_supported_methods(d) local l = {} if #d > 0 then for _, k in ipairs(d) do if type(se...
bsd-2-clause
mercury233/ygopro-scripts
c1249315.lua
2
1630
--聖光の宣告者 function c1249315.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,nil,2,2) c:EnableReviveLimit() --to hand local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(1249315,0)) e2:SetCategory(CATEGORY_TOHAND) e2:SetProperty(EFFECT_FLAG_CARD_TARGET) e2:SetType(EFFECT_TYPE_IGNITION) e2:SetRan...
gpl-2.0
mercury233/ygopro-scripts
c90764875.lua
6
1233
--ゴルゴニック・グール function c90764875.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(90764875,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCountLimit(2,90764875) e1:SetCondition(c90764875.spcon) e1:Set...
gpl-2.0
mercury233/ygopro-scripts
c3493978.lua
2
1250
--首領亀 function c3493978.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(3493978,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetTarget(c3493978.target) e1:SetOperation(c34939...
gpl-2.0
mercury233/ygopro-scripts
c71442223.lua
2
3124
--方界輪廻 function c71442223.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_COUNTER) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_ATTACK_ANNOUNCE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCondition(c71442223.condition) e1:SetTarget(c71442223.t...
gpl-2.0
mercury233/ygopro-scripts
c39396763.lua
2
3433
--ダイナ・ベース local s,id,o=GetID() function s.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCountLimit(1,id) e1:SetCondition(s.spcon) e1:SetTarget(s.s...
gpl-2.0
linushsao/marsu_game-linus-v0.2
server_side/irc/hooks.lua
1
6919
-- This file is licensed under the terms of the BSD 2-clause license. -- See LICENSE.txt for details. local ie = ... -- MIME is part of LuaSocket local b64e = ie.require("mime").b64 irc.hooks = {} irc.registered_hooks = {} -- TODO: Add proper conversion from CP1252 to UTF-8. local stripped_chars = {"\2", "\31"} fo...
gpl-3.0
Zenny89/darkstar
scripts/zones/Apollyon/bcnms/NE_Apollyon.lua
19
1059
----------------------------------- -- Area: Appolyon -- Name: NE_Apollyon ----------------------------------- require("scripts/globals/limbus"); require("scripts/globals/keyitems"); -- After registering the BCNM via bcnmRegister(bcnmid) function onBcnmRegister(player,instance) SetServerVariable("[NE_Apollyon]Unique...
gpl-3.0
mercury233/ygopro-scripts
c60410769.lua
4
1153
--ジュッテ・ナイト function c60410769.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(60410769,0)) e1:SetCategory(CATEGORY_POSITION) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetTarget(c6041076...
gpl-2.0
mercury233/ygopro-scripts
c99013397.lua
2
3394
--剣闘獣の闘器ハルバード function c99013397.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_CONTINUOUS_TARGET) e1:SetTarget(c99013397.target) e1:SetOperation(c9901339...
gpl-2.0
mercury233/ygopro-scripts
c11743119.lua
2
1814
--ユニオン・ライダー function c11743119.initial_effect(c) --equip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(11743119,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetCondition(c11743119....
gpl-2.0
mercury233/ygopro-scripts
c38814750.lua
3
3630
--PSYフレームギア・γ function c38814750.initial_effect(c) --splimit local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) e1:SetValue(c38814750.splimit) c:RegisterEffect(e1) --spsummon local e2=Effect.Crea...
gpl-2.0
tjormola/tj-awesome-themes
Radiance-Flat-Orange/theme.lua
1
15931
-- Radiance-Flat-Orange theme for Awesome 3.5 -- Copyright (C) 2016 Tuomas Jormola <tj@solitudo.net> -- -- Licensed under the terms of GNU General Public License Version 2.0. -- -- Designed to be used with Radiance-Flat-Orange GTK+ theme available at -- http://www.ravefinity.com/p/our-themes-work.html. -- freedesktop.o...
gpl-2.0
mercury233/ygopro-scripts
c31699677.lua
2
3441
--マジクリボー function c31699677.initial_effect(c) aux.AddCodeList(c,46986414,38033121) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(31699677,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,TIMING_MAIN_END+...
gpl-2.0
Zenny89/darkstar
scripts/zones/Norg/npcs/Gilgamesh.lua
19
2316
----------------------------------- -- Area: Norg -- NPC: Gilgamesh -- @pos 122.452 -9.009 -12.052 252 ----------------------------------- require("scripts/globals/missions"); ----------------------------------- -- onTrade Action ----------------------------------- function onTrade(player,npc,trade) if (player:g...
gpl-3.0
fusijie/cocos2d-x-samples
samples/FantasyWarrior3D/src/cocos/cocosbuilder/CCBReaderLoad.lua
79
5530
ccb = ccb or {} function CCBReaderLoad(strFilePath,proxy,owner) if nil == proxy then return nil end local ccbReader = proxy:createCCBReader() local node = ccbReader:load(strFilePath) local rootName = "" --owner set in readCCBFromFile is proxy if nil ~= owner then --C...
mit
mercury233/ygopro-scripts
c46008667.lua
2
3721
--聖剣 EX-カリバーン function c46008667.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_CONTINUOUS_TARGET) e1:SetTarget(c46008667.target) e1:SetOperation(c4600866...
gpl-2.0
mercury233/ygopro-scripts
c26773909.lua
2
2406
--才呼粉身 function c26773909.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,26773909+EFFECT_COUNT_CODE_OATH) e1:SetHintTi...
gpl-2.0
mercury233/ygopro-scripts
c62161698.lua
2
1956
--イリュージョン・バルーン function c62161698.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DECKDES) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,TIMING_END_PHASE) e1:SetCondition(c62161698.condition) e1:SetTarget(c62161698.t...
gpl-2.0
Zenny89/darkstar
scripts/zones/Labyrinth_of_Onzozo/mobs/Goblin_Mercenary.lua
23
1060
----------------------------------- -- Area: Labyrinth of Onzozo -- MOB: Goblin Mercenary -- Note: Place holder Soulstealer Skullnix ----------------------------------- require("scripts/zones/Labyrinth_of_Onzozo/MobIDs"); ----------------------------------- -- onMobDeath -----------------------------------...
gpl-3.0
mercury233/ygopro-scripts
c3790062.lua
2
1404
--No.65 裁断魔人ジャッジ・バスター function c3790062.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsAttribute,ATTRIBUTE_DARK),2,2) c:EnableReviveLimit() --negate activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(3790062,0)) e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DAMA...
gpl-2.0
linushsao/marsu_game-linus-v0.2
mods/technical/technic/technic/crafts.lua
1
6376
-- check if we have the necessary dependencies to allow actually using these materials in the crafts local mesecons_materials = minetest.get_modpath("mesecons_materials") -- tubes crafting recipes minetest.register_craft({ output = 'pipeworks:accelerator_tube_1', recipe = { {'technic:copper_coil', 'pi...
gpl-3.0
Zenny89/darkstar
scripts/zones/Northern_San_dOria/npcs/Shakir.lua
38
1046
----------------------------------- -- Area: Northern San d'Oria -- NPC: Shakir -- Type: Standard NPC -- @zone: 231 -- @pos 48.952 -2.999 -16.687 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil; ---...
gpl-3.0
notcake/gcompute
lua/gcompute/languages/cpp.lua
1
4038
local LANGUAGE = GCompute.Languages.Create ("C++") GCompute.LanguageDetector:AddExtension (LANGUAGE, "cpp") GCompute.LanguageDetector:AddExtension (LANGUAGE, "h") -- Lexer LANGUAGE:GetTokenizer () :AddCustomSymbols (GCompute.Lexing.TokenType.String, {"\"", "'"}, function (code, offset) local quotationMar...
gpl-3.0
mercury233/ygopro-scripts
c7582066.lua
4
1338
--サイコ・デビル function c7582066.initial_effect(c) --synchro summon aux.AddSynchroProcedure(c,nil,aux.NonTuner(Card.IsRace,RACE_PSYCHO),1) c:EnableReviveLimit() --atk local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(7582066,0)) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_IGNITION) e1:Set...
gpl-2.0
scroggo/skia
tools/lua/skia.lua
207
1863
-- Experimental helpers for skia -- function string.startsWith(String,Start) return string.sub(String,1,string.len(Start))==Start end function string.endsWith(String,End) return End=='' or string.sub(String,-string.len(End))==End end Sk = {} function Sk.isFinite(x) return x * 0 == 0 end ----------------...
bsd-3-clause
mercury233/ygopro-scripts
c46247282.lua
2
2625
--鉄騎龍ティアマトン function c46247282.initial_effect(c) c:EnableReviveLimit() --cannot special summon local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) c:RegisterEffect(e1) --special summon local e2=Ef...
gpl-2.0
mosavy/test
libs/lua-redis.lua
580
35599
local redis = { _VERSION = 'redis-lua 2.0.4', _DESCRIPTION = 'A Lua client library for the redis key value storage system.', _COPYRIGHT = 'Copyright (C) 2009-2012 Daniele Alessandri', } -- The following line is used for backwards compatibility in order to keep the `Redis` -- global module name. Using...
gpl-3.0
DiMON-TEAM/DiMoN-BoT
libs/lua-redis.lua
580
35599
local redis = { _VERSION = 'redis-lua 2.0.4', _DESCRIPTION = 'A Lua client library for the redis key value storage system.', _COPYRIGHT = 'Copyright (C) 2009-2012 Daniele Alessandri', } -- The following line is used for backwards compatibility in order to keep the `Redis` -- global module name. Using...
gpl-2.0
Zenny89/darkstar
scripts/zones/Mhaura/npcs/Koh_Lenbalalako.lua
19
2176
----------------------------------- -- Area: Mhaura -- NPC: Koh Lenbalalako -- Type: Standard NPC -- @pos -64.412 -17 29.213 249 ----------------------------------- package.loaded["scripts/zones/Mhaura/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Mhaura/TextIDs"); require("scripts/g...
gpl-3.0
valhallaGaming/uno
src_trunk/resources/shop-system/c_ped_click.lua
1
1030
local messages = { "F*** off, Punk!", "You're not welcome.", "I'm not selling you anything.", "Find someone else to harrass.", "Get Lost." } function pedDamage() if getElementData(source,"shopkeeper") then setElementData(source,"ignores", true, false) setTimer(setElementData,300000,1,source,"ignores", nil, t...
bsd-3-clause
iskolbin/lusp
comp.lua
1
4104
scm = { logicops = {['>'] = true, ['<'] = true, ['>='] = true, ['<='] = true, ['='] = true, ['~='] = true, }, arithmops = {['+'] = true, ['-'] = true, ['*'] = true, ['/'] = true, ['//'] = true }, compile = function( t, l ) local l = l or 1 if type( t ) == 'table' then if t[1] == 'lambda' then return ('fu...
mit
linushsao/marsu_game-linus-v0.2
mods/technical/replacer/init.lua
1
10190
--[[ Replacement tool for creative building (Mod for MineTest) Copyright (C) 2013 Sokomine This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or ...
gpl-3.0
mercury233/ygopro-scripts
c7850740.lua
2
2979
--エクシーズ・スライドルフィン function c7850740.initial_effect(c) --same effect send this card to grave and spsummon another card check local e0=aux.AddThisCardInGraveAlreadyCheck(c) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(7850740,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(...
gpl-2.0
mercury233/ygopro-scripts
c93454062.lua
2
3485
--ナチュル・モルクリケット function c93454062.initial_effect(c) --same effect send this card to grave and spsummon another card check local e0=aux.AddThisCardInGraveAlreadyCheck(c) --spsummon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(93454062,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT...
gpl-2.0
mercury233/ygopro-scripts
c45950291.lua
2
4576
--RUM-アストラル・フォース function c45950291.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetTarget(c45950291.target) e1:SetOperation(c45950291.activate) c:Reg...
gpl-2.0
jackkkk21/crhidden
plugins/all.lua
1321
4661
do data = load_data(_config.moderation.data) local function get_msgs_user_chat(user_id, chat_id) local user_info = {} local uhash = 'user:'..user_id local user = redis:hgetall(uhash) local um_hash = 'msgs:'..user_id..':'..chat_id user_info.msgs = tonumber(redis:get(um_hash) or 0) user_info.name = user_print...
gpl-2.0
wolfnight/wolfnight1
plugins/all.lua
1321
4661
do data = load_data(_config.moderation.data) local function get_msgs_user_chat(user_id, chat_id) local user_info = {} local uhash = 'user:'..user_id local user = redis:hgetall(uhash) local um_hash = 'msgs:'..user_id..':'..chat_id user_info.msgs = tonumber(redis:get(um_hash) or 0) user_info.name = user_print...
gpl-2.0
mercury233/ygopro-scripts
c74730899.lua
9
1793
--燃料電池メン function c74730899.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetRange(LOCATION_HAND) e1:SetCondition(c74730899.spcon) c:RegisterEffect(e1) --return hand local e2=Effect.Cr...
gpl-2.0
mercury233/ygopro-scripts
c86157908.lua
2
2840
--EMオッドアイズ・ユニコーン function c86157908.initial_effect(c) --pendulum summon aux.EnablePendulumAttribute(c) --atk local e2=Effect.CreateEffect(c) e2:SetProperty(EFFECT_FLAG_NO_TURN_RESET+EFFECT_FLAG_CARD_TARGET) e2:SetCategory(CATEGORY_ATKCHANGE) e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e2:SetCode(EVENT_A...
gpl-2.0
mercury233/ygopro-scripts
c97452817.lua
2
3515
--アルカナフォースⅩⅧ-THE MOON function c97452817.initial_effect(c) --coin local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(97452817,0)) e1:SetCategory(CATEGORY_COIN) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetTarget(c97452817.cointg) e1:SetOperation(c974528...
gpl-2.0
mercury233/ygopro-scripts
c38730226.lua
2
1390
--英知の代行者 マーキュリー function c38730226.initial_effect(c) --draw local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetCode(EVENT_PHASE+PHASE_END) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetCountLimit(1) e1:SetRange(LOCATION_MZONE) e1:SetCondition(c38730226.con) e1:SetOper...
gpl-2.0
ESMAILESMAIL/gladiator2
plugins/anti_ads.lua
61
1032
local function run(msg) local data = load_data(_config.moderation.data) if data[tostring(msg.to.id)]['settings']['antilink'] == 'yes' then if not is_momod(msg) then chat_del_user('chat#id'..msg.to.id, 'user#id'..msg.from.id, ok_cb, true) local msgads = 'ForbiddenAdText' ...
gpl-2.0
mercury233/ygopro-scripts
c67526112.lua
2
3918
--ラピッド・トリガー function c67526112.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(67526112,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_FUSION_SUMMON+CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,67526112+EFFECT_...
gpl-2.0
mercury233/ygopro-scripts
c13382806.lua
2
2034
--マタタビ仙狸 function c13382806.initial_effect(c) --spsummon local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCountLimit(1,13382806) e1:SetCost(c13382806.cost) e1:SetTarget(c13382806.ta...
gpl-2.0
valhallaGaming/uno
src_trunk/resources/gate-system/pd_door4.lua
1
1510
local objGated = createObject(3089, 295.22623901367, 189.35, 1007.471875, 0, 0, 0) exports.pool:allocateElement(objGated) setElementInterior(objGated, 3) setElementDimension(objGated, 1) local objGated2 = createObject(3089, 298.12623901367, 189.35, 1007.471875, 0, 0, 180) exports.pool:allocateElement(objGated2) ...
bsd-3-clause
mercury233/ygopro-scripts
c88305705.lua
2
3213
--ブレイブアイズ・ペンデュラム・ドラゴン function c88305705.initial_effect(c) --fusion material c:EnableReviveLimit() aux.AddFusionProcFun2(c,aux.FilterBoolFunction(Card.IsFusionSetCard,0x10f2),aux.FilterBoolFunction(Card.IsRace,RACE_WARRIOR),true) --atk local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(88305705,0)) e...
gpl-2.0
Zenny89/darkstar
scripts/zones/Mhaura/npcs/Porter_Moogle.lua
41
1512
----------------------------------- -- Area: Mhaura -- NPC: Porter Moogle -- Type: Storage Moogle -- @zone 249 -- @pos TODO ----------------------------------- package.loaded["scripts/zones/Mhaura/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Mhaura/TextIDs"); require("scripts...
gpl-3.0
mercury233/ygopro-scripts
c95714077.lua
2
1423
--ゼンマイマニュファクチャ function c95714077.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --special summon local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(95714077,0)) e2:SetCategory(CATEGORY_TOHAND+CATEGORY_...
gpl-2.0
Zenny89/darkstar
scripts/globals/weaponskills/weapon_break.lua
18
1792
----------------------------------- -- Weapon Break -- Great Axe weapon skill -- Skill level: 175 -- Lowers enemy's attack. Duration of effect varies with TP. -- Lowers attack by as much as 25% if unresisted. -- Strong against: Manticores, Orcs, Rabbits, Raptors, Sheep. -- Immune: Crabs, Crawlers, Funguars, Quad...
gpl-3.0
Zenny89/darkstar
scripts/zones/Tavnazian_Safehold/npcs/Justinius.lua
19
1888
----------------------------------- -- Area: Tavnazian Safehold -- NPC: Justinius -- Involved in mission : COP2-3 -- @pos 76 -34 68 26 ----------------------------------- package.loaded["scripts/zones/Tavnazian_Safehold/TextIDs"] = nil; ----------------------------------- require("scripts/globals/titles"); require("sc...
gpl-3.0
mercury233/ygopro-scripts
c66947414.lua
2
2463
--ボスラッシュ function c66947414.initial_effect(c) --activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition(c66947414.condition) c:RegisterEffect(e1) --cannot normal summon local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetProperty(E...
gpl-2.0
mercury233/ygopro-scripts
c40424929.lua
9
1131
--烈華砲艦ナデシコ function c40424929.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,nil,3,3) c:EnableReviveLimit() --damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(40424929,0)) e1:SetCategory(CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1...
gpl-2.0
mercury233/ygopro-scripts
c78121572.lua
3
1322
--黒魔力の精製者 function c78121572.initial_effect(c) --counter local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(78121572,0)) e1:SetCategory(CATEGORY_COUNTER) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetCondition(c7812157...
gpl-2.0
mercury233/ygopro-scripts
c96470883.lua
4
2280
--凛天使クイーン・オブ・ローズ function c96470883.initial_effect(c) --summon with 1 tribute local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(96470883,0)) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SUMMON_PROC) e1:SetCondition(c96470883.otcon...
gpl-2.0
Zenny89/darkstar
scripts/zones/Grauberg_[S]/npcs/qm1.lua
19
1617
----------------------------------- -- Area: Grauberg [S] -- NPC: ??? -- Quest - DNC AF1 ----------------------------------- package.loaded["scripts/zones/Grauberg_[S]/TextIDs"] = nil; ------------------------------------- require("scripts/globals/harvesting"); require("scripts/zones/Grauberg_[S]/TextIDs"); -----...
gpl-3.0
mercury233/ygopro-scripts
c64815084.lua
4
1622
--進化の分岐点 function c64815084.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_SPECIAL_SUMMON) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,TIMING_END_PHASE) e1:SetTarget(c64815084.targ...
gpl-2.0
Zenny89/darkstar
scripts/zones/The_Celestial_Nexus/mobs/Orbital.lua
18
2131
----------------------------------- -- Area: The Celestial Nexus -- NPC: Orbital -- Zilart Mission 16 BCNM Fight ----------------------------------- require("scripts/globals/titles"); require("scripts/globals/status"); require("scripts/globals/magic"); function onMobInitialize(mob) mob:addMod(MOD_REGAIN, 50); end...
gpl-3.0
mercury233/ygopro-scripts
c83866861.lua
2
2597
--デストーイ・マッド・キマイラ function c83866861.initial_effect(c) --fusion material c:EnableReviveLimit() aux.AddFusionProcFunRep(c,aux.FilterBoolFunction(Card.IsFusionSetCard,0xad),3,true) --spsummon condition local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FL...
gpl-2.0
mercury233/ygopro-scripts
c42199039.lua
2
3790
--妖刀竹光 function c42199039.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_CONTINUOUS_TARGET) e1:SetTarget(c42199039.target) e1:SetOperation(c42199039.activ...
gpl-2.0
mercury233/ygopro-scripts
c77330185.lua
9
1643
--XX-セイバー ガルセム function c77330185.initial_effect(c) --search local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(77330185,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_TO_GRAVE) e1:SetCondition(c77330185.condition) e1:SetTarg...
gpl-2.0
mercury233/ygopro-scripts
c68223137.lua
2
1645
--ワンクリウェイ function c68223137.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOEXTRA+CATEGORY_SPECIAL_SUMMON+CATEGORY_GRAVE_ACTION+CATEGORY_GRAVE_SPSUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCountLimit(1...
gpl-2.0
valhallaGaming/uno
branches/2_0_3_STABLE/spike-system/c_spikes.lua
1
1221
function SpikesOnGround(theElement, matchingDimension) if(getElementType(theElement) == "vehicle") then local luck luck = math.random(1, 4) if(luck ~= 1) then setVehicleWheelStates ( theElement, 1, -1, -1, -1 ) end luck = math.random(1, 4) if(luck ~= 4) then setVehicleWheelStates ( theElem...
bsd-3-clause
Zenny89/darkstar
scripts/zones/QuBia_Arena/mobs/Trion.lua
25
1162
----------------------------------- -- Area: qubia arena -- NPC: Trion -- the heir to the light sando 9-2 ----------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); require("scripts/zones/QuBia_Arena/TextIDs"); function onMobInitialize(mob) mob:addMod(MOD_REGAIN, 30)...
gpl-3.0
LuaDist2/multipart
spec/multipart_spec.lua
1
11375
local Multipart = require "multipart" local function table_size(t) local res = 0 if t then for _,_ in pairs(t) do res = res + 1 end end return res end describe("Multipart Tests", function() it("should not fail with request that don't have a body", function() local content_type = "multipar...
mit
mercury233/ygopro-scripts
c12533811.lua
2
1601
--ベビー・トラゴン function c12533811.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,nil,1,3) c:EnableReviveLimit() --attack up local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(12533811,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetRange(LOCATION_MZONE) e1:SetC...
gpl-2.0
samijon/suofi
plugins/admin.lua
230
6382
local function set_bot_photo(msg, success, result) local receiver = get_receiver(msg) if success then local file = 'data/photos/bot.jpg' print('File downloaded to:', result) os.rename(result, file) print('File moved to:', file) set_profile_photo(file, ok_cb, false) send_large_msg(rec...
gpl-2.0
mercury233/ygopro-scripts
c21924381.lua
2
1899
--ヒロイック・アドバンス function c21924381.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_BE_BATTLE_TARGET) e1:SetCondition(c21924381.condition) e1:SetTarget(c21924381.target) e1:SetOperation(c21924381.activate) c:Reg...
gpl-2.0
Zenny89/darkstar
scripts/zones/PsoXja/npcs/_09f.lua
17
1614
----------------------------------- -- Area: Pso'Xja -- NPC: _09f (Stone Gate) -- Notes: Spawns Gargoyle when triggered -- @pos -330.000 14.074 -261.600 9 ----------------------------------- package.loaded["scripts/zones/PsoXja/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Pso...
gpl-3.0
Zenny89/darkstar
scripts/zones/Hall_of_Transference/npcs/_0e0.lua
32
1340
----------------------------------- -- Area: Hall of Transference -- NPC: Cermet Gate - Holla -- @pos -219 -6 280 14 ----------------------------------- package.loaded["scripts/zones/Hall_of_Transference/TextIDs"] = nil; ----------------------------------- require("scripts/globals/missions"); require("scripts/zones/H...
gpl-3.0
linushsao/marsu_game-linus-v0.2
mods/tutorial/quests/hud.lua
1
9346
-- Boilerplate to support localized strings if intllib mod is installed. local S if minetest.get_modpath("intllib") then S = intllib.Getter() else -- If you don't use insertions (@1, @2, etc) you can use this: S = function(s) return s end end local show_max = 10 -- the maximum visible quests. local hud_config = { ...
gpl-3.0
rodamaral/smw-tas
lsnes/scripts/lib/game/collision.lua
1
2295
local M = {} local memory = _G.memory local luap = require 'luap' local config = require 'config' local draw = require 'draw' local widget = require 'widget' local smw = require 'game.smw' local empty = luap.empty_array local OPTIONS = config.OPTIONS local COLOUR = config.COLOUR -- Private methods local function ch...
mit
mercury233/ygopro-scripts
c89547299.lua
4
1248
--パワー・インジェクター function c89547299.initial_effect(c) --atkup local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(89547299,0)) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetCost(c89547299.atkcost) e1:SetTarget(c89547299.atktg) ...
gpl-2.0
lambd0x/Awesome-wm-Funtoo-GreenSunset
awesome/vicious/widgets/bat_freebsd.lua
4
2168
-- {{{ Grab environment local setmetatable = setmetatable local tonumber = tonumber local io = { popen = io.popen } local math = { floor = math.floor } local helpers = require("vicious.helpers") local string = { gmatch = string.gmatch, match = string.match, format = string.format } -- }}} local bat_freebsd...
gpl-2.0
mercury233/ygopro-scripts
c44790889.lua
2
1273
--ハンマーラッシュ・バウンサー function c44790889.initial_effect(c) --summon with no tribute local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(44790889,0)) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SUMMON_PROC) e1:SetCondition(c44790889.ntcon) c:RegisterEffect(e1) -...
gpl-2.0
mercury233/ygopro-scripts
c77848740.lua
2
3634
--マドルチェ・プティンセスール function c77848740.initial_effect(c) --spsummon from hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(77848740,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCountLimit(1,77848740) e1:SetCondition(c77848740.spcon1...
gpl-2.0
Zenny89/darkstar
scripts/zones/Windurst_Waters/npcs/Dienger.lua
38
1042
----------------------------------- -- Area: Windurst Waters -- NPC: Dienger -- Type: Melody Minstrel -- @zone: 238 -- @pos -46.448 -6.312 212.384 -- -- Auto-Script: Requires Verification (Verfied By Brawndo) ----------------------------------- package.loaded["scripts/zones/Windurst_Waters/TextIDs"] = nil; -------...
gpl-3.0
mercury233/ygopro-scripts
c97317530.lua
6
1171
--森の聖獣 カラントーサ function c97317530.initial_effect(c) --destroy local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(97317530,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SPSUMMON_SUCCESS) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMA...
gpl-2.0
valhallaGaming/uno
src_trunk/resources/realism-system/s_party.lua
1
5325
--[[local PershingSquareCol = createColCuboid( 1410, -1795, -50, 150, 237, 200 ) addEventHandler( "onPlayerDamage", getRootElement(), function( attacker, weapon ) if weapon and weapon > 1 and isElementWithinColShape( source, PershingSquareCol ) and ( not attacker or getElementData( attacker, "faction" ) ~= 1 ) ...
bsd-3-clause
mercury233/ygopro-scripts
c51481927.lua
6
1052
--魔法吸収 function c51481927.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --LP up local e0=Effect.CreateEffect(c) e0:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e0:SetCode(EVENT_CHAINING) e0:SetProperty(EFFEC...
gpl-2.0
Zenny89/darkstar
scripts/zones/Bastok_Mines/npcs/Vaghron.lua
38
1396
----------------------------------- -- Area: Bastok Mines -- NPC: Vaghron -- Type: Adventurer's Assistant -- @pos -39.162 -1 -92.147 234 ----------------------------------- package.loaded["scripts/zones/Bastok_Mines/TextIDs"] = nil; ----------------------------------- require("scripts/globals/quests"); require("s...
gpl-3.0