• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Scripter Vamas RPG Server needs scripter!

masteuszx

OtsList.eu
Joined
Aug 3, 2008
Messages
784
Reaction score
45
Hello everybody!

I am here to announce something.​

Vamas.sytes.net RPG needs scripter!

I am too busy, so I can't do everything we have to. As a reward, I can offer for example GM position or something else (points on OtsList?)

Application:
Nick:
Age:
Experience (years):
Projects I worked for:
Any examples of my skils:

Thank you,
OtsList.eu and Vamas.sytes.net Admin.
 
Nick: AndresPro
Age: 15
Experience (years): 3
Projects I worked for:
VipHera - Latest News - Scripter for 1 and a half year
Lantania - Coded some things (favors)
Kyoria - Latest News (Incomplete) - Scripter for a short period of time

Any examples of my skills:

Last thread on OTLand:
http://otland.net/f118/powerfull-guilds-latest-news-must-edit-config-php-63841/

Add some skills on runes (Buff Rune):

Lua:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false)

local config = {
tiempo = 100, -- Tiempo en segundos que durara el buff
skill = 3, -- Cantidad de Skill a subir
}
local condition = createConditionObject(CONDITION_ATTRIBUTES)
setConditionParam(condition, CONDITION_PARAM_SUBID, 1)
setConditionParam(condition, CONDITION_PARAM_BUFF, true)
setConditionParam(condition, CONDITION_PARAM_TICKS, config.tiempo * 1000)
setConditionParam(condition, CONDITION_PARAM_SKILL_CLUB, config.skill) 
setConditionParam(condition, CONDITION_PARAM_SKILL_SWORD, config.skill)
setConditionParam(condition, CONDITION_PARAM_SKILL_AXE, config.skill)
setCombatCondition(combat, condition)

function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end

Switch to buy items (Easily configurable):
Lua:
-- Sistema Perfeccionado de Compra de Items

function onUse(cid, item, frompos, item2, topos)
-- Configuracion
local palancas = {
[7378] = {item = 7378, cost = 15, count=1}, -- agregar
[5100] = {item = 2455, cost = 200, count=1}, -- agregar
[9821] = {item = 2173, cost = 10000, count=1}, -- agregar
}
-- [4040] = Es el actionid del item
-- Item = es el ID del item que se dara al usar la palanca
-- cost = el precio del item
-- count = cantidad del item (tienes que poner aunque sea 1)

if palancas[item.actionid] then
local cosas = palancas[item.actionid]
if getPlayerMoney(cid) >= cosas.cost then
doPlayerAddItem(cid, cosas.item, cosas.count)
doPlayerRemoveMoney(cid, cosas.cost)
doCreatureSay(cid, "CONGRATULATIONS! You bought an item for ".. cosas.cost .." gold coins. ", TALKTYPE_ORANGE_1)
else
doCreatureSay(cid, "You don't have ".. cosas.cost .." gold coins. ", TALKTYPE_ORANGE_1)
end
end
return 1
end
 
Back
Top Bottom