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 |
|---|---|---|---|---|---|
m3rlin87/darkstar | scripts/globals/abilities/shield_bash.lua | 1 | 1941 | -----------------------------------
-- Ability: Shield Bash
-- Delivers an attack that can stun the target. Shield required.
-- Obtained: Paladin Level 15, Valoredge automaton frame Level 1
-- Recast Time: 3:00 minutes (3:00 for Valoredge version)
-- Duration: Instant
-----------------------------------
require("script... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Carpenters_Landing/mobs/Cryptonberry_Executor.lua | 1 | 1364 | -----------------------------------
-- Area: Carpenters' Landing
-- NM: Cryptonberry_Executor
-- !pos 120.615 -5.457 -390.133 2
-----------------------------------
local ID = require("scripts/zones/Carpenters_Landing/IDs")
mixins = {require("scripts/mixins/job_special")}
require("scripts/globals/missions")
----------... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Southern_San_dOria/npcs/Balasiel.lua | 1 | 6145 | -----------------------------------
-- Area: Southern San d'Oria (230)
-- NPC: Balasiel
-- Starts and Finishes: A Squire's Test, A Squire's Test II, A Knight's Test, Methods Create Madness
-- !pos -136 -11 64 230
-------------------------------------
local ID = require("scripts/zones/Southern_San_dOria/IDs")
require("s... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/plate_of_seafood_paella.lua | 1 | 1211 | -----------------------------------------
-- ID: 5968
-- Item: Plate of Seafood Paella
-- Food Effect: 3 Hrs, All Races
-----------------------------------------
-- HP 40
-- Dexterity 5
-- Mind -1
-- Accuracy % 15 (cap 80)
-- Undead Killer 5
-----------------------------------------
require("scripts/globals/status")
--... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/pickled_herring.lua | 1 | 1219 | -----------------------------------------
-- ID: 4490
-- Item: Pickled Herring
-- Food Effect: 30Min, All Races
-----------------------------------------
-- Dexterity 3
-- Mind -3
-- Attack % 12 (cap 70)
-- Ranged ATT % 12 (cap 70)
-----------------------------------------
require("scripts/globals/status")
------------... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/mobskills/kick_out.lua | 1 | 1123 | ---------------------------------------------
-- Kick Out
--
-- Description: Deals heavy damage and inflicts blind to any target behind user.
-- Type: Physical
-- Utsusemi/Blink absorb: 2-3 shadows
-- Range: Unknown cone, backwards
-- Notes: Only used when the Behemoth is attacking with its tail.
---------------------... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/plate_of_shrimp_sushi.lua | 1 | 1328 | -----------------------------------------
-- ID: 5691
-- Item: plate_of_shrimp_sushi
-- Food Effect: 30Min, All Races
-----------------------------------------
-- Vitality 1
-- Defense 5
-- Accuracy % 14 (cap 68)
-- Ranged Accuracy % 14 (cap 68)
-- Resist sleep +1
-----------------------------------------
require("scri... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Ghelsba_Outpost/bcnms/petrifying_pair.lua | 2 | 1348 | -----------------------------------
-- Area: Ghelsba Outpost
-- Name: pertrifying_pair BCNM30
-- !pos -162 -11 78 140
-----------------------------------
require("scripts/globals/titles");
require("scripts/globals/keyitems");
require("scripts/globals/missions");
-----------------------------------
-- After registeri... | gpl-3.0 |
Dr0virus/a | libs/mimetype.lua | 3662 | 2922 | -- Thanks to https://github.com/catwell/lua-toolbox/blob/master/mime.types
do
local mimetype = {}
-- TODO: Add more?
local types = {
["text/html"] = "html",
["text/css"] = "css",
["text/xml"] = "xml",
["image/gif"] = "gif",
["image/jpeg"] = "jpg",
["application/x-javascript"] = "js",
["application/atom... | gpl-2.0 |
m3rlin87/darkstar | scripts/zones/Port_Jeuno/npcs/Zona_Shodhun.lua | 1 | 3805 | -----------------------------------
-- Area: Port Jeuno
-- NPC: Zona Shodhun
-- Starts and Finishes Quest: Pretty Little Things
-- !pos -175 -5 -4 246
-----------------------------------
local ID = require("scripts/zones/Port_Jeuno/IDs")
require("scripts/globals/settings");
require("scripts/globals/shop");
require("sc... | gpl-3.0 |
m3rlin87/darkstar | scripts/commands/completemission.lua | 10 | 1637 | ---------------------------------------------------------------------------------------------------
-- func: completemission <logID> <missionID> <player>
-- desc: Completes the given mission for the target player, if that mission is currently active.
---------------------------------------------------------------------... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/LaLoff_Amphitheater/bcnms/ark_angels_3.lua | 1 | 3150 | -----------------------------------
-- Area: LaLoff Amphitheater
-- Name: Ark Angels 3 (Mithra)
-----------------------------------
local ID = require("scripts/zones/LaLoff_Amphitheater/IDs");
require("scripts/globals/missions");
require("scripts/globals/keyitems");
-----------------------------------
-- Death cutscen... | gpl-3.0 |
half-shell/dotfiles | luakit/.config/luakit/window.lua | 12 | 27193 | ------------------
-- Window class --
------------------
require "lfs"
-- Window class table
window = {}
-- List of active windows by window widget
window.bywidget = setmetatable({}, { __mode = "k" })
-- Widget construction aliases
local function entry() return widget{type="entry"} end
local function eventbox... | gpl-2.0 |
m3rlin87/darkstar | scripts/globals/items/irmik_helvasi_+1.lua | 1 | 1280 | -----------------------------------------
-- ID: 5573
-- Item: irmik_helvasi_+1
-- Food Effect: 4 hours, All Races
-----------------------------------------
-- HP +10% (cap 100)
-- MP +3% (cap 15)
-- INT +2
-- hHP +1
-- hMP +1
-----------------------------------------
require("scripts/globals/status")
-----------------... | gpl-3.0 |
Dr0virus/a | libs/JSON.lua | 3765 | 34843 | -- -*- coding: utf-8 -*-
--
-- Simple JSON encoding and decoding in pure Lua.
--
-- Copyright 2010-2014 Jeffrey Friedl
-- http://regex.info/blog/
--
-- Latest version: http://regex.info/blog/lua/json
--
-- This code is released under a Creative Commons CC-BY "Attribution" License:
-- http://creativecommons.org/licenses... | gpl-2.0 |
tangyiyang/v3quick-classic | quick/lib/lua_bindings/auto/api/AABB.lua | 1 | 2521 |
--------------------------------
-- @module AABB
-- @parent_module cc
--------------------------------
-- reset min and max value.
-- @function [parent=#AABB] reset
-- @param self
-- @return AABB#AABB self (return value: cc.AABB)
--------------------------------
-- Sets this bounding box to the specified va... | mit |
m3rlin87/darkstar | scripts/zones/Yuhtunga_Jungle/npcs/Cermet_Headstone.lua | 1 | 3159 | -----------------------------------
-- Area: Yuhtunga Jungle
-- NPC: Cermet Headstone
-- Involved in Mission: ZM5 Headstone Pilgrimage (Fire Fragment)
-- !pos 491 20 301 123
-----------------------------------
local ID = require("scripts/zones/Yuhtunga_Jungle/IDs")
require("scripts/globals/keyitems")
require("scripts/... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Waughroon_Shrine/bcnms/up_in_arms.lua | 2 | 1654 | -----------------------------------
-- Area: Waughroon_Shrine
-- Name: up in arms
-- BCNM60
-----------------------------------
require("scripts/globals/titles");
require("scripts/globals/quests");
-----------------------------------
-- EXAMPLE SCRIPT
--
-- What should go here:
-- giving key items, playing ENDING cut... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/divine_sword.lua | 12 | 1078 | -----------------------------------------
-- ID: 16549
-- Item: Divine Sword
-- Additional Effect: Light Damage
-----------------------------------------
require("scripts/globals/status")
require("scripts/globals/magic")
require("scripts/globals/msg")
-----------------------------------
function onAdditionalEffect(pla... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/slice_of_pepperoni_pizza.lua | 1 | 1214 | -----------------------------------------
-- ID: 6215
-- Item: slice of pepperoni_pizza
-- Food Effect: 30 minutes, all Races
-----------------------------------------
-- HP +30
-- STR+1
-- Accuracy+9% (Max. 10)
-- Attack+10% (Max. 15)
-----------------------------------------
require("scripts/globals/status")
--------... | gpl-3.0 |
tangyiyang/v3quick-classic | quick/lib/lua_bindings/auto/api/ActionEase.lua | 1 | 1213 |
--------------------------------
-- @module ActionEase
-- @extend ActionInterval
-- @parent_module cc
--------------------------------
--
-- @function [parent=#ActionEase] getInnerAction
-- @param self
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
--------------------------... | mit |
tangyiyang/v3quick-classic | quick/cocos/cocos2d/DeprecatedCocos2dFunc.lua | 94 | 39158 |
--tip
local function deprecatedTip(old_name,new_name)
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
end
--functions of CCDirector will be deprecated,begin
local CCDirectorDeprecated = { }
function CCDirectorDeprecated.sharedDirector()
deprecatedTip("CC... | mit |
tangyiyang/v3quick-classic | quick/samples/anysdk/src/cocos/cocosdenshion/AudioEngine.lua | 39 | 2616 |
--Encapsulate SimpleAudioEngine to AudioEngine,Play music and sound effects.
local M = {}
function M.stopAllEffects()
cc.SimpleAudioEngine:getInstance():stopAllEffects()
end
function M.getMusicVolume()
return cc.SimpleAudioEngine:getInstance():getMusicVolume()
end
function M.isMusicPlaying()
return cc.S... | mit |
m3rlin87/darkstar | scripts/zones/Kazham/npcs/Rauteinot.lua | 1 | 2600 | -----------------------------------
-- Area: Kazham
-- NPC: Rauteinot
-- Starts and Finishes Quest: Missionary Man
-- !pos -42 -10 -89 250
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/keyitems");
require("scripts/globals/shop");
require("scripts/globals/quests");
lo... | gpl-3.0 |
williamrussellajb/SampleApp | libs/LibStub.lua | 7 | 1569 | -- LibStub is a simple versioning stub meant for use in Libraries. http://www.wowace.com/wiki/LibStub for more info
-- LibStub is hereby placed in the Public Domain Credits: Kaelten, Cladhaire, ckknight, Mikk, Ammo, Nevcairiel, joshborke
-- LibStub developed for World of Warcraft by above members of the WowAce commu... | mit |
m3rlin87/darkstar | scripts/globals/items/pork_cutlet_+1.lua | 1 | 1401 | -----------------------------------------
-- ID: 6395
-- Item: pork_cutlet_+1
-- Food Effect: 240Min, All Races
-----------------------------------------
-- HP +45
-- STR +8
-- INT -8
-- Fire resistance +21
-- Attack +21% (cap 125)
-- Ranged Attack +21% (cap 125)
-----------------------------------------
require("scrip... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Davoi/npcs/_45d.lua | 3 | 1071 | -----------------------------------
-- Area: Davoi
-- NPC: Wall of Banishing
-- Used In Quest: Whence Blows the Wind
-- !pos 181 0.1 -218 149
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/keyitems");
require("scripts/globals/quests");
local ID = require("scripts/zone... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/seafood_stewpot.lua | 1 | 1364 | -----------------------------------------
-- ID: 5238
-- Item: Seafood Stewpot
-- Food Effect: 3 Hrs, All Races
-----------------------------------------
-- TODO: Group Effect
-- HP +10% Cap 50
-- MP +10
-- Accuracy 5
-- Ranged Accuracy 5
-- Evasion 5
-- hHP 5
-- hMP 1
-----------------------------------------
require(... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Meriphataud_Mountains_[S]/npcs/Indescript_Markings.lua | 1 | 1044 | ----------------------------------
-- Area: Meriphataud_Mountains_[S]
-- NPC: Indescript Markings
-- Type: Quest
-- !pos -389 -9 92 1 96
-----------------------------------
local ID = require("scripts/zones/Meriphataud_Mountains_[S]/IDs");
require("scripts/globals/keyitems");
-----------------------------------
funct... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/plate_of_sole_sushi_+1.lua | 1 | 1388 | -----------------------------------------
-- ID: 5163
-- Item: plate_of_sole_sushi_+1
-- Food Effect: 60Min, All Races
-----------------------------------------
-- Health 20
-- Strength 5
-- Dexterity 6
-- Accuracy % 16
-- Ranged ACC % 16
-- Sleep Resist 2
-----------------------------------------
require("scripts/glob... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/spells/bio_iv.lua | 1 | 2358 | -----------------------------------------
-- Spell: Bio IV
-- Deals dark damage that weakens an enemy's attacks and gradually reduces its HP.
-----------------------------------------
require("scripts/globals/settings")
require("scripts/globals/status")
require("scripts/globals/magic")
---------------------------------... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Mog_Garden/IDs.lua | 12 | 1246 | -----------------------------------
-- Area: Mog_Garden
-----------------------------------
require("scripts/globals/zone")
-----------------------------------
zones = zones or {}
zones[dsp.zone.MOG_GARDEN] =
{
text =
{
ITEM_CANNOT_BE_OBTAINED = 6382, -- You cannot obtain the <item>. Come back after ... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/RoMaeve/npcs/qm2.lua | 1 | 1264 | -----------------------------------
-- Area: Ro'Maeve
-- NPC: qm2 (???)
-- Involved in Mission: Bastok 7-1
-- !pos 102 -4 -114 122 and <many pos>
-----------------------------------
local ID = require("scripts/zones/RoMaeve/IDs")
require("scripts/globals/keyitems")
require("scripts/globals/missions")
require("scripts/... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/RuAun_Gardens/Zone.lua | 1 | 2409 | -----------------------------------
--
-- Zone: RuAun_Gardens (130)
--
-----------------------------------
local ID = require("scripts/zones/RuAun_Gardens/IDs");
require("scripts/globals/missions");
require("scripts/globals/conquest");
require("scripts/globals/treasure")
require("scripts/globals/status");
require("scri... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Northern_San_dOria/npcs/Cheupirudaux.lua | 12 | 1620 | -----------------------------------
-- Area: Northern San d'Oria
-- NPC: Cheupirudaux
-- Type: Woodworking Guildmaster NPC
-- Involved in Quest: It's Raining Mannequins!
-- !pos -138 12 250 231
-----------------------------------
local ID = require("scripts/zones/Northern_San_dOria/IDs");
require("scripts/globals/craf... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Upper_Jeuno/IDs.lua | 12 | 2476 | -----------------------------------
-- Area: Upper_Jeuno
-----------------------------------
require("scripts/globals/zone")
-----------------------------------
zones = zones or {}
zones[dsp.zone.UPPER_JEUNO] =
{
text =
{
CONQUEST_BASE = 0, -- Tallying conquest results...
... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/yilanbaligi.lua | 1 | 1061 | -----------------------------------------
-- ID: 5458
-- Item: Yilanbaligi
-- Food Effect: 5Min, Mithra only
-----------------------------------------
-- Dexterity 2
-- Mind -4
-- Evasion 5
-----------------------------------------
require("scripts/globals/status")
-----------------------------------------
function on... | gpl-3.0 |
hugheaves/ardupilot-solo | Tools/CHDK-Scripts/Cannon SX260/3DR_EAI_SX260.lua | 182 | 29665 |
--[[
KAP UAV Exposure Control Script v3.1
-- Released under GPL by waterwingz and wayback/peabody
http://chdk.wikia.com/wiki/KAP_%26_UAV_Exposure_Control_Script
3DR EAI 1.0 is a fork of KAP 3.1 with settings specific to Canon cameras triggered off the Pixhawk autopilot.
Changelog:
-Modified Tv, Av, and... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/kohlrouladen.lua | 1 | 1486 | -----------------------------------------
-- ID: 5760
-- Item: kohlrouladen
-- Food Effect: 3hr, All Races
-----------------------------------------
-- Strength 3
-- Agility 3
-- Intelligence -5
-- RACC +8% (cap 60)
-- RATT +14% (cap 65)
-- Enmity -4
-- Subtle Blow +5
-----------------------------------------
require("... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/spells/bluemagic/reactor_cool.lua | 12 | 2005 | -----------------------------------------
-- Spell: Reactor Cool
-- Enhances defense and covers you with magical ice spikes. Enemies that hit you take ice damage
-- Spell cost: 28 MP
-- Monster Type: Luminions
-- Spell Type: Magical (Ice)
-- Blue Magic Points: 5
-- Stat Bonus: INT+3 MND+3
-- Level: 74
-- Casting Time: ... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Metalworks/npcs/Hugues.lua | 6 | 1264 | -----------------------------------
-- Area: Metalworks
-- NPC: Hugues
-- Type: Smithing Synthesis Image Support
-- !pos -106.336 2.000 26.117 237
-----------------------------------
require("scripts/globals/status");
require("scripts/globals/crafting");
local ID = require("scripts/zones/Metalworks/IDs");
------------... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Inner_Horutoto_Ruins/npcs/_5cr.lua | 1 | 2027 | -----------------------------------
-- Area: Inner Horutoto Ruins
-- NPC: _5cr (Magical Gizmo) #3
-- Involved In Mission: The Horutoto Ruins Experiment
-----------------------------------
require("scripts/globals/missions");
local ID = require("scripts/zones/Inner_Horutoto_Ruins/IDs");
-------------------------------... | gpl-3.0 |
tangyiyang/v3quick-classic | quick/samples/tests/src/tests/framework/luabindingTest.lua | 8 | 2177 |
local LuabindingTestScene = game.createSceneClass("LuabindingTestScene")
function LuabindingTestScene:ctor()
self:prepare({
description = "Please check console output"
})
local items = {
"avoidPeertableGC",
"getCppFunction",
}
self:addChild(game.createMenu(items, handler(s... | mit |
m3rlin87/darkstar | scripts/globals/items/bowl_of_brain_stew.lua | 1 | 1121 | -----------------------------------------
-- ID: 4542
-- Item: Bowl of Brain Stew
-- Food Effect: 180Min, All Races
-----------------------------------------
-- Dexterity 5
-- Intelligence 5
-- Mind 5
-- Health Regen While Healing 3
-- Magic Regen While Healing 3
-----------------------------------------
require("scrip... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/m&p_doner_kebab.lua | 1 | 1195 | -----------------------------------------
-- ID: 5717
-- Item: M&P Doner Kabob
-- Food Effect: 5Min, All Races
-----------------------------------------
-- HP 5% (cap 150)
-- MP 5% (cap 150)
-- hHP +2
-- hMP +2
-----------------------------------------
require("scripts/globals/status")
---------------------------------... | gpl-3.0 |
m3rlin87/darkstar | scripts/commands/jail.lua | 5 | 2040 | ---------------------------------------------------------------------------------------------------
-- func: jail
-- desc: Sends the target player to jail. (Mordion Gaol)
---------------------------------------------------------------------------------------------------
cmdprops =
{
permission = 1,
parameters ... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Mhaura/IDs.lua | 12 | 2445 | -----------------------------------
-- Area: Mhaura
-----------------------------------
require("scripts/globals/zone")
-----------------------------------
zones = zones or {}
zones[dsp.zone.MHAURA] =
{
text =
{
ITEM_CANNOT_BE_OBTAINED = 6382, -- You cannot obtain the <item>. Come back after sorting ... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/plate_of_ic_pilav_+1.lua | 1 | 1642 | -----------------------------------------
-- ID: 5585
-- Item: plate_of_ic_pilav_+1
-- Food Effect: 240Min, All Races
-----------------------------------------
-- Health % 14
-- Health Cap 70
-- Strength 5
-- Vitality -2
-- Intelligence -2
-- Health Regen While Healing 1
-- Attack % 22
-- Attack Cap 70
-- Ranged ATT % ... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/LaLoff_Amphitheater/npcs/qm1_5.lua | 2 | 1718 | -----------------------------------
-- Area: LaLoff_Amphitheater
-- NPC: Shimmering Circle (BCNM Entrances)
-------------------------------------
require("scripts/globals/bcnm");
require("scripts/globals/titles");
require("scripts/globals/keyitems");
require("scripts/globals/quests");
require("scripts/globals/missions... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/konigskuchen.lua | 1 | 1099 | -----------------------------------------
-- ID: 5614
-- Item: konigskuchen
-- Food Effect: 180Min, All Races
-----------------------------------------
-- Health 8
-- Magic % 3
-- Magic Cap 13
-- Intelligence 2
-- hMP +1
-----------------------------------------
require("scripts/globals/status")
-----------------------... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Bastok_Mines/npcs/Proud_Beard.lua | 12 | 1075 | -----------------------------------
-- Area: Bastok Mines
-- NPC: Proud Beard
-- Standard Merchant NPC
-----------------------------------
require("scripts/globals/events/harvest_festivals")
local ID = require("scripts/zones/Bastok_Mines/IDs")
require("scripts/globals/shop")
function onTrade(player,npc,trade)
onH... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/bowl_of_miso_soup_+1.lua | 1 | 1804 | -----------------------------------------
-- ID: 6467
-- Item: bowl_of_miso_soup_+1
-- Food Effect: 60Min, All Races
-----------------------------------------
-- HP +8% (cap 55)
-- DEX +5
-- AGI +5
-- Accuracy +11% (cap 45)
-- Attack +11% (cap 45)
-- Ranged Accuracy +11% (cap 45)
-- Ranged Attack +11% (cap 45)
--------... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/pestle.lua | 12 | 1120 | -----------------------------------------
-- ID: 18599
-- Item: Pestle
-- Additional effect: MP Drain
-----------------------------------------
require("scripts/globals/status")
require("scripts/globals/magic")
require("scripts/globals/msg")
-----------------------------------
function onAdditionalEffect(player,target... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Sea_Serpent_Grotto/npcs/Hurr_the_Betrayer.lua | 1 | 3022 | -----------------------------------
-- Area: Sea Serpent Grotto
-- NPC: Hurr the Betrayer
-- Type: Involved in the "Sahagin Key Quest"
-- !pos 305.882 26.768 234.279 176
--
-----------------------------------
require("scripts/globals/settings");
local ID = require("scripts/zones/Sea_Serpent_Grotto/IDs");
------------... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/weaponskills/howling_fist.lua | 1 | 1459 | -----------------------------------
-- Howling Fist
-- Hand-to-Hand weapon skill
-- Skill Level: 200
-- Damage varies with TP.
-- Will stack with Sneak Attack.
-- Ignores some defense.
-- Aligned with the Light Gorget & Thunder Gorget.
-- Aligned with the Light Belt & Thunder Belt.
-- Element: None
-- Modifiers: STR:20... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Northern_San_dOria/npcs/Narcheral.lua | 1 | 3616 | -----------------------------------
-- Area: Northern San d'Oria
-- NPC: Narcheral
-- Starts and Finishes Quest: Messenger from Beyond, Prelude of Black and White (Finish), Pieuje's Decision (Finish)
-- !pos 129 -11 126 231
-----------------------------------
local ID = require("scripts/zones/Northern_San_dOria/IDs")
... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Kazham/npcs/Hari_Pakhroib.lua | 1 | 2491 | -----------------------------------
-- Area: Kazham
-- NPC: Hari Pakhroib
-- Starts and Finishes Quest: Greetings to the Guardian
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/quests");
require("scripts/globals/titles");
local ID = require("scripts/zones/Kazham/IDs")... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Western_Adoulin/npcs/Clautaire.lua | 1 | 1879 | -----------------------------------
-- Area: Western Adoulin
-- NPC: Clautaire
-- Type: Standard NPC and Quest Giver
-- Starts, Involved with, and Finishes Quest: 'F.A.I.L.ure Is Not an Option'
-- !pos 44 4 -159 256
-----------------------------------
require("scripts/globals/quests");
require("scripts/globals/keyitem... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Dynamis-Xarcabard/mobs/Yang.lua | 5 | 1825 | -----------------------------------
-- Area: Dynamis Xarcabard
-- NM: Yang
-----------------------------------
require("scripts/globals/status");
-----------------------------------
function onMobInitialize(mob,target)
end;
function onMobSpawn(mob)
local dynaLord = GetMobByID(17330177);
if (dynaLord:getLoca... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Southern_San_dOria/npcs/Femitte.lua | 1 | 2639 | -----------------------------------
-- Area: Southern San d'Oria
-- NPC: Femitte
-- Involved in Quest: Lure of the Wildcat (San d'Oria), Distant Loyalties
-- !pos -17 2 10 230
-------------------------------------
require("scripts/globals/quests");
require("scripts/globals/keyitems");
local ID = require("scripts/zones... | gpl-3.0 |
tangyiyang/v3quick-classic | quick/lib/lua_bindings/auto/api/EaseQuarticActionInOut.lua | 1 | 1074 |
--------------------------------
-- @module EaseQuarticActionInOut
-- @extend ActionEase
-- @parent_module cc
--------------------------------
-- creates the action
-- @function [parent=#EaseQuarticActionInOut] create
-- @param self
-- @param #cc.ActionInterval action
-- @return EaseQuarticActionInOut#EaseQuarticA... | mit |
m3rlin87/darkstar | scripts/globals/items/bowl_of_humpty_soup.lua | 1 | 1043 | -----------------------------------------
-- ID: 4521
-- Item: Bowl of Humpty Soup
-- Food Effect: 240Min, All Races
-----------------------------------------
-- Health % 6
-- Health Cap 35
-- Magic 5
-- Health Regen While Healing 5
-----------------------------------------
require("scripts/globals/status")
-----------... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/spells/bluemagic/hecatomb_wave.lua | 12 | 1860 | -----------------------------------------
-- Spell: Hecatomb Wave
-- Deals wind damage to enemies within a fan-shaped area originating from the caster. Additional effect: Blindness
-- Spell cost: 116 MP
-- Monster Type: Demons
-- Spell Type: Magical (Wind)
-- Blue Magic Points: 3
-- Stat Bonus: AGI+1
-- Level: 54
-- Ca... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Port_Windurst/npcs/Thubu_Parohren.lua | 12 | 1593 | -----------------------------------
-- Area: Port Windurst
-- NPC: Thubu Parohren
-- Type: Fishing Guild Master
-- !pos -182.230 -3.835 61.373 240
-----------------------------------
local ID = require("scripts/zones/Port_Windurst/IDs");
require("scripts/globals/crafting");
require("scripts/globals/status");
---------... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Abyssea-Uleguerand/IDs.lua | 12 | 4037 | -----------------------------------
-- Area: Abyssea-Uleguerand
-----------------------------------
require("scripts/globals/keyitems")
require("scripts/globals/zone")
-----------------------------------
zones = zones or {}
zones[dsp.zone.ABYSSEA_ULEGUERAND] =
{
text =
{
ITEM_CANNOT_BE_OBTAINED = 6382... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/helm.lua | 1 | 58508 | -----------------------------------
-- Harvesting, Excavation, Logging, Mining
-- https://ffxiclopedia.wikia.com/wiki/Harvesting
-- https://ffxiclopedia.wikia.com/wiki/Excavation
-- https://ffxiclopedia.wikia.com/wiki/Logging
-- https://ffxiclopedia.wikia.com/wiki/Mining
-----------------------------------
require("scr... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Periqia/npcs/Rune_of_Release.lua | 1 | 1497 | -----------------------------------
-- Area: Ilrusi Atoll
-- NPC: Rune of Release
-- !pos 412 -9 54 55
-----------------------------------
local ID = require("scripts/zones/Periqia/IDs")
require("scripts/globals/besieged")
-----------------------------------
function onTrade(player,npc,trade)
end
function onTrigger(... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Aydeewa_Subterrane/IDs.lua | 1 | 1159 | -----------------------------------
-- Area: Aydeewa_Subterrane
-----------------------------------
require("scripts/globals/zone")
-----------------------------------
zones = zones or {}
zones[dsp.zone.AYDEEWA_SUBTERRANE] =
{
text =
{
NOTHING_HAPPENS = 119, -- Nothing happens...
ITEM_... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Promyvion-Dem/IDs.lua | 12 | 2700 | -----------------------------------
-- Area: Promyvion-Dem
-----------------------------------
require("scripts/globals/zone")
-----------------------------------
zones = zones or {}
zones[dsp.zone.PROMYVION_DEM] =
{
text =
{
NOTHING_HAPPENS = 119, -- Nothing happens...
ITEM_CANNOT_BE_... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Monarch_Linn/mobs/Ouryu.lua | 3 | 2262 | -----------------------------------
-- Area:
-- MOB: Ouryu
-----------------------------------
require("scripts/globals/titles");
-----------------------------------
function onMobSpawn(mob)
mob:SetMobSkillAttack(0); -- resetting so it doesn't respawn in flight mode.
mob:AnimationSub(0); -- subanim 0 is only ... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/items/salmon_sub_sandwich.lua | 1 | 1162 | -----------------------------------------
-- ID: 4355
-- Item: salmon_sub_sandwich
-- Food Effect: 30Min, All Races
-----------------------------------------
-- Dexterity 2
-- Agility 1
-- Vitality 1
-- Intelligence 2
-- Mind -2
-- Ranged ACC 2
-----------------------------------------
require("scripts/globals/status")... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Port_Jeuno/IDs.lua | 1 | 4037 | -----------------------------------
-- Area: Port_Jeuno
-----------------------------------
require("scripts/globals/zone")
-----------------------------------
zones = zones or {}
zones[dsp.zone.PORT_JEUNO] =
{
text =
{
ITEM_CANNOT_BE_OBTAINED = 6382, -- You cannot obtain the <item>. Come back after s... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Kazham/npcs/Popopp.lua | 1 | 2652 | -----------------------------------
-- Area: Kazham
-- NPC: Popopp
-- Standard Info NPC
-----------------------------------
function onTrade(player,npc,trade)
-- item IDs
-- 483 Broken Mithran Fishing Rod
-- 22 Workbench
-- 1008 Ten of Coins
-- 1157 Sands of Silence
-- 1... | gpl-3.0 |
tangyiyang/v3quick-classic | quick/lib/lua_bindings/auto/api/Liquid.lua | 1 | 1459 |
--------------------------------
-- @module Liquid
-- @extend Grid3DAction
-- @parent_module cc
--------------------------------
--
-- @function [parent=#Liquid] getAmplitudeRate
-- @param self
-- @return float#float ret (return value: float)
--------------------------------
--
-- @function [parent=#Liqui... | mit |
m3rlin87/darkstar | scripts/globals/spells/valor_minuet_v.lua | 2 | 1573 | -----------------------------------------
-- Spell: Valor Minuet V
-- Grants Attack bonus to all allies.
-----------------------------------------
require("scripts/globals/status")
require("scripts/globals/msg")
-----------------------------------------
function onMagicCastingCheck(caster,target,spell)
return 0
en... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/mobskills/vorpal_wheel.lua | 1 | 1050 | ---------------------------------------------
-- Vorpal Wheel
--
-- Description: Throws a slicing wheel at a single target.
-- Type: Physical
-- Utsusemi/Blink absorb: No
-- Range: Unknown
-- Notes: Only used by Gulool Ja Ja, and will use it as a counterattack to any spells cast on him. Damage increases as his he... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Northern_San_dOria/npcs/Beriphaule.lua | 5 | 1719 | -----------------------------------
-- Area: Northern San d'Oria
-- NPC: Beriphaule
-- Type: Allegiance Changer NPC
-- !pos -247.422 7.000 28.992 231
-----------------------------------
require("scripts/globals/conquest");
-----------------------------------
function onTrade(player,npc,trade)
end;
function onTrigger... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Monarch_Linn/bcnms/ancient_vows.lua | 3 | 1930 | -----------------------------------
-- Area: Monarch Linn
-- Name: Ancient Vows
-----------------------------------
require("scripts/globals/titles");
require("scripts/globals/missions");
-- After registering the BCNM via bcnmRegister(bcnmid)
function onBcnmRegister(player,instance)
end;
-- Physically entering the ... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Norg/npcs/Paito-Maito.lua | 14 | 2259 | -----------------------------------
-- Area: Norg
-- NPC: Paito-Maito
-- Standard Info NPC
-----------------------------------
require("scripts/globals/pathfind");
-----------------------------------
local path =
{
-71.189713, -9.413510, 74.024879,
-71.674171, -9.317029, 73.054794,
-72.516525, -9.298064, ... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Sealions_Den/mobs/Mammet-22_Zeta.lua | 1 | 1964 | -----------------------------------
-- Area: Sealions Den
-- Mob: Mammet-22_Zeta
-----------------------------------
local ID = require("scripts/zones/Sealions_Den/IDs");
require("scripts/globals/titles");
-----------------------------------
function onMobDeath(mob, player, isKiller)
-- find mob offset for given ... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/spells/earth_carol.lua | 2 | 1548 | -----------------------------------------
-- Spell: Earth Carol
-- Increases earth resistance for party members within the area of effect.
-----------------------------------------
require("scripts/globals/status")
require("scripts/globals/magic")
require("scripts/globals/msg")
-----------------------------------------... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/King_Ranperres_Tomb/npcs/_5a0.lua | 1 | 1895 | -----------------------------------
-- Area: King Ranperre's Tomb
-- DOOR: _5a0 (Heavy Stone Door)
-- !pos -39.000 4.823 20.000 190
-----------------------------------
local ID = require("scripts/zones/King_Ranperres_Tomb/IDs");
require("scripts/globals/missions");
function onTrade(player,npc,trade)
end;
function onT... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Davoi/npcs/_45g.lua | 3 | 1823 | -----------------------------------
-- Area: Davoi
-- NPC: Groaning Pond
-- Used In Quest: Whence Blows the Wind
-- !pos 101 0.1 60 149
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/keyitems");
local ID = require("scripts/zones/Davoi/IDs");
--------------------------... | gpl-3.0 |
tangyiyang/v3quick-classic | quick/samples/armature/src/layers/TestPerformance.lua | 8 | 2856 | --
-- Author: SunLightJuly
-- Date: 2014-07-29 16:56:47
--
local ArmatureTestLayer = require("layers.ArmatureTestLayer")
local TestPerformance = class("TestPerformance", ArmatureTestLayer)
local armaturePerformanceTag = 20000
function TestPerformance:ctor(index)
TestPerformance.super.ctor(self)
self:creatTitleAndSu... | mit |
m3rlin87/darkstar | scripts/zones/Leujaoam_Sanctum/npcs/rune_of_release.lua | 1 | 1440 | -----------------------------------
-- Area: Leujaoam Sanctum
-----------------------------------
require("scripts/globals/besieged")
local ID = require("scripts/zones/Leujaoam_Sanctum/IDs")
-----------------------------------
function onTrade(player,npc,trade)
end;
function onTrigger(player,npc)
local instance ... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Port_Jeuno/Zone.lua | 1 | 3064 | -----------------------------------
--
-- Zone: Port_Jeuno (246)
--
-----------------------------------
local ID = require("scripts/zones/Port_Jeuno/IDs")
require("scripts/globals/conquest")
require("scripts/globals/settings")
require("scripts/globals/chocobo")
require("scripts/globals/quests")
require("scripts/globals... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Port_Bastok/npcs/Benita.lua | 1 | 1726 | -----------------------------------
-- Area: Port Bastok
-- NPC: Benita
-- Starts Quest: The Wisdom Of Elders
-----------------------------------
require("scripts/globals/quests");
require("scripts/globals/settings");
local ID = require("scripts/zones/Port_Bastok/IDs");
-----------------------------------
function on... | gpl-3.0 |
tangyiyang/v3quick-classic | quick/framework/global.lua | 20 | 3978 | --------------------------------
-- @module global
--------------------------------
-- 定义一个作废的接口
-- @function [parent=#global] DEPRECATED
--------------------------------
-- 显示作废信息
-- @function [parent=#global] PRINT_DEPRECATED
--------------------------------
-- 打印调试信息
-- @function [parent=#global] printLog
-- @par... | mit |
m3rlin87/darkstar | scripts/globals/abilities/altruism.lua | 12 | 1049 | -----------------------------------
-- Ability: Altruism
-- Increases the accuracy of your next White Magic spell.
-- Obtained: Scholar Level 75 Tier 2 Merit Points
-- Recast Time: Stratagem Charge
-- Duration: 1 white magic spell or 60 seconds, whichever occurs first
--
-- Level |Charges |Recharge Time per Charge
--... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Al_Zahbi/npcs/Zafif.lua | 12 | 1238 | -----------------------------------
-- Area: Al Zahbi
-- NPC: Zafif
-- Standard Merchant NPC
-----------------------------------
local ID = require("scripts/zones/Al_Zahbi/IDs")
require("scripts/globals/shop")
function onTrade(player,npc,trade)
end
function onTrigger(player,npc)
local stock =
{
4612,... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/West_Sarutabaruta_[S]/npcs/Sealed_Entrance_2.lua | 1 | 1790 | -----------------------------------
-- Area: West Sarutabaruta [S]
-- NPC: Sealed Entrance (Sealed_Entrance_2)
-- !pos 263.600 -6.512 40.000 95
-----------------------------------
local ID = require("scripts/zones/West_Sarutabaruta_[S]/IDs")
require("scripts/globals/keyitems")
require("scripts/globals/quests")
-------... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/QuBia_Arena/mobs/Death_Clan_Destroyer.lua | 3 | 1690 | -----------------------------------
-- Area: QuBia_Arena
-- MOB: Death Clan Destroyer
-----------------------------------
local ID = require("scripts/zones/QuBia_Arena/IDs");
require("scripts/globals/status");
function onMobInitialize(mob)
mob:setMobMod(dsp.mobMod.HP_STANDBACK, 60);
end;
function allHeirMobsDead... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Kazham/npcs/Magriffon.lua | 1 | 3822 | -----------------------------------
-- Area: Kazham
-- NPC: Magriffon
-- Involved in Quest: Gullible's Travels, Even More Gullible's Travels,
-- Location: (I-7)
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/quests");
require("scripts/globals/titles");
require("script... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/spells/bindga.lua | 12 | 1190 | -----------------------------------------
-- Spell: Bind
-----------------------------------------
require("scripts/globals/status")
require("scripts/globals/magic")
require("scripts/globals/msg")
-----------------------------------------
function onMagicCastingCheck(caster,target,spell)
return 0
end
function onS... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Aht_Urhgan_Whitegate/npcs/Sanraku.lua | 3 | 9774 | -----------------------------------
-- Area: Aht Urhgan Whitegate
-- NPC: Sanraku
-- Type: Zeni NM pop item and trophy management.
-- !pos -125.724 0.999 22.136 50
-----------------------------------
require("scripts/globals/keyitems")
require("scripts/globals/besieged")
local ID = require("scripts/zones/Aht_Urhgan_Wh... | gpl-3.0 |
williamrussellajb/SampleApp | SampleGuildChecker.lua | 1 | 1884 | function CheckGuildMemeberStatus()
------ Variables
local SampleTotalGuilds = GetNumGuilds()
local SampleGetGuildName = {}
--------------------------------------------------------------------------
--- The first for loop will iterate through all guilds
-- The second for loop will iterate through al... | mit |
tangyiyang/v3quick-classic | quick/samples/towerdefense/src/maps/MapA0001Data.lua | 2 | 8559 |
------------ MAP A0001 ------------
local map = {}
map.size = {width = 1600, height = 1000}
map.imageName = "MapA0001Bg.png"
local objects = {}
local object = {
points = {
{1115, 817}, {1058, 854}, { 992, 878}, { 902, 890}, { 863, 892}, { 811, 885},
{ 773, 871}, { 748, 849}, { 733, 828... | mit |
m3rlin87/darkstar | scripts/zones/Selbina/npcs/Vuntar.lua | 1 | 2714 | -----------------------------------
-- Area: Selbina
-- NPC: Vuntar
-- Starts and Finishes Quest: Cargo (R)
-- !pos 7 -2 -15 248
-----------------------------------
local ID = require("scripts/zones/Selbina/IDs");
require("scripts/globals/settings");
require("scripts/globals/quests");
---------------------------------... | gpl-3.0 |
m3rlin87/darkstar | scripts/globals/weaponskills/quietus.lua | 1 | 1829 | -----------------------------------
-- Quietus
-- Scythe weapon skill
-- Skill Level: N/A
-- Delivers a triple damage attack that ignores target's defense. Amount ignored varies with TP. Redemption: Aftermath.
-- Available only when equipped with Redemption (85)/(90)/(95)/(99) or Penitence +1/+2/+3/Umiliati.
-- Aligned... | gpl-3.0 |
m3rlin87/darkstar | scripts/zones/Behemoths_Dominion/npcs/Cermet_Headstone.lua | 1 | 2513 | -----------------------------------
-- Area: Behemoth's Dominion
-- NPC: Cermet Headstone
-- Involved in Mission: ZM5 Headstone Pilgrimage (Lightning Headstone)
-- !pos -74 -4 -87 127
-----------------------------------
local ID = require("scripts/zones/Behemoths_Dominion/IDs");
require("scripts/globals/keyitems");
re... | gpl-3.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.