South WoW Forums
To create an account please Click Here
South WoW Forums
To create an account please Click Here
South WoW Forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.


South WoW is a Mainly PvP Server with Non-Overpowered Donor Gear and Friendly/Helpful GMs South.servegame.org
 
HomePortalLatest imagesSearchRegisterLog in

 

 Artherius's Developer Application

Go down 
4 posters
AuthorMessage
Artherius
Developer
Developer
Artherius


Posts : 7
Join date : 2009-09-12
Age : 32
Location : Norway

Artherius's Developer Application Empty
PostSubject: Artherius's Developer Application   Artherius's Developer Application EmptySat Sep 12, 2009 6:23 am

1. What is your real name? My real name is Alex


2. How old are you? I'm 18 years old.


3. Which time zone are you in? ( Ex., EST / PST )
EST +01 /Norway


4. What is your Lua Knowledge?
I would say 7/10

5. What is your C++ Knowledge?
1/10

6. Imagine you are online on the server and someone ask you that Mortal Strike don't take any damage?
Well i don't know how to fixs spells i would note it and pass it on to someone who do know it.

7. What can you contribute to the server?
Alot..

Here's my WoW-V.com dev application:
http://wow-v.com/forums/index.php?topic=12079.0

//////////////////////////////////////////////////////////////////////////////////////////////////
I can make all the custom things you can imagine.
Picture link to my recent custom Zone/area projects -
http://img40.imageshack.us/gal.php?g=wowscrnshot090609131133.jpg

My recent project i have been working on has lasted for around 3-4 days. And so far i have a massive custom zone with just custom objects, from trees to buildings. Also it streches even more into a instance where a new massive custom zone is. All this i made in 3 days. I even have around 15-20 custom quests and all around 50-60 custom mobs. This means i have been sitting practicly 24/7 though Tongue Dont judge me cause i but heart into my work.

I also make decent blizzlike items such as armor sets, weapons etc.

Previous experience: Well first of all i have been playing World of Warcraft for around 5 years. Started back in the good old days. And i have been lurking on private servers for soon 2 years.

I on these private servers i have been Gm on some, admin on some and mostly Dev.
Sadly i can not prove this cause i dont remember any of the names of the servers, so you just have to trust me Smile

Here's also a lua script that i made, it's not quite done yet if you find any errors.



[code]function Calindra_OnCombat(pUnit,event)
pUnit:SendChatMessage(14, 0, "What have you done to my brother?")
pUnit:RegisterEvent("Phase1",1000,0)
end

function Carrion(pUnit, event)
pUnit:FullCastSpellOnTarget(59434, pUnit:GetRandomPlayer(0))
end

function Drain(pUnit, event)
pUnit:FullCastSpellOnTarget(64160, pUnit:GetRandomPlayer(0))
end

function Red(pUnit, event)
pUnit:FullCastSpellOnTarget(56359, pUnit:GetRandomPlayer(0))
end

function Scourge(pUnit, event)
pUnit:FullCastSpellOnTarget(53639, pUnit:GetRandomPlayer(0))
end

RegisterUnitEvent(900065, 1, "Calindra_OnCombat")
RegisterUnitEvent(900065, 2, "Calindra_onLeaveCombat")
RegisterUnitEvent(900065, 3, "Calindra_onKillTarget")
RegisterUnitEvent(900065, 4, "Calindra_onDeath")

function Phase1(pUnit, event)
if pUnit:GetHealthPct() <= 95 then
pUnit:RemoveEvents()
pUnit:SendChatMessage(14, 0, "You will pay for what you have done!")
pUnit:RegisterEvent("Drain",1000,1)
pUnit:RegisterEvent("Carrion", 4000, 2)
pUnit:RegisterEvent("Phase2",6000,0)
end
end

function Phase2(pUnit, event)
if pUnit:GetHealthPct() <= 90 then
pUnit:RemoveEvents()
pUnit:SendChatMessage(14, 0, "You will die by my hand!")
pUnit:RegisterEvent("Scourge",5000,1)
pUnit:RegisterEvent("Red",1000,1)
pUnit:RegisterEvent("Phase3",6000,0)
end
end

function Phase3(pUnit, event)
if pUnit:GetHealthPct() <= 80 then
pUnit:RemoveEvents()
pUnit:RegisterEvent("Scourge",5000,2)
pUnit:RegisterEvent("Red",5000,2)
pUnit:RegisterEvent("Phase4",10000, 0)
end
end

function Phase4(pUnit, event)
if pUnit:GetHealthPct() <= 70 then
pUnit:RemoveEvents()
pUnit:SendChatMessage(14, 0, "Die you weak mortals!")
pUnit:RegisterEvent("Drain", 4000, 2)
pUnit:RegisterEvent("Carrion", 4000, 2)
pUnit:RegisterEvent("Phase5",8000, 0)
end
end

function Phase5(pUnit, event)
if pUnit:GetHealthPct() <= 60 then
pUnit:RemoveEvents()
pUnit:SendChatMessage(14, 0, "Now i reveal to you my true form!")
pUnit:SetModel(16164)
pUnit:RegisterEvent("Carrion",4000,2)
pUnit:RegisterEvent("Drain",5000,1)
pUnit:RegisterEvent("Phase5",9000,0)
end
end

function Phase6(pUnit, event)
if punit:GetHealthPct() <= 50 then
pUnit:RemoveEvents()
pUnit:RegisterEvent("Scourge",5000,2)
pUnit:RegisterEvent("Red",5000,2)
pUnit:RegisterEvent("Phase7",10000,0)
end
end

function Phase7(pUnit, event)
if pUnit:GetHealthPct() <= 40 then
pUnit:RemoveEvents()
pUnit:SendChatMessage(14, 0, "Maybe you heros fight for the better good")
pUnit:RegisterEvent("Drain",1000,1)
pUnit:RegisterEvent("Carrion",5000,2)
pUnit:RegisterEvent("Phase6",8000,0)
end
end

function Phase8(pUnit, event)
if pUnit:GetHealthPct() <= 30 then
pUnit:RemoveEvents()
pUnit:SendChatMessage(14, 0, "I know now that i have acted ruthless after my brother.")
pUnit:RegisterEvent("Scourge",8000,2)
pUnit:RegisterEvent("Carrion",2000,1)
pUnit:RegisterEvent("Phase7",10000,0)
end
end

function Phase9(pUnit, event)
if pUnit:GetHealthPct() <= 15 then
pUnit:RemoveEvents()
pUnit:SendChatMessage(14, 0, "Free me now mortals and i will reward you.")
pUnit:RegisterEvent("Scourge",8000,2)
pUnit:RegisterEvent("Red",5000,1)
end
end

function Calindra_onLeaveCombat(pUnit, event)
pUnit:RemoveEvents()
pUnit:SetModel(20981)
end

function Calindra_onKillTarget(pUnit, event)
pUnit:CastSpell(55714)
pUnit:SendChatMessage(14, 0, "I drink you blood one by one!")
end

function Calindra_onDeath(pUnit, event)
pUnit:RemoveEvents()
pUnit:SpawnCreature(900067, 1212.790527, 1398.696411, 29.009874, 3.134680, 35, 0)
pUnit:SendChatMessage(14,0, "I...am...free...")
end
end
/////////////////////////////////////////////////////////////////////////////////////////////////////////////

Feel free to ask me anything.


Last edited by Artherius on Sat Sep 12, 2009 1:31 pm; edited 1 time in total
Back to top Go down
Snackie
Developer
Developer



Posts : 21
Join date : 2009-08-29
Age : 28
Location : New Mexico

Artherius's Developer Application Empty
PostSubject: Re: Artherius's Developer Application   Artherius's Developer Application EmptySat Sep 12, 2009 1:42 pm

You know that you can copy LUA scripts from forums, which creates the possibility that you don't know LUA. We need SQL and C/C++ developers in my opinion. I will leave the decision to Ryan and Umadd.

Note: Moved your excess posts to "Loopy's Lounge" they were irrelevant to the topic.
Back to top Go down
Artherius
Developer
Developer
Artherius


Posts : 7
Join date : 2009-09-12
Age : 32
Location : Norway

Artherius's Developer Application Empty
PostSubject: Re: Artherius's Developer Application   Artherius's Developer Application EmptySat Sep 12, 2009 1:59 pm

-.- Would you like me to make another lua script then?
Back to top Go down
Umadd
Administrator
Administrator
Umadd


Posts : 24
Join date : 2009-08-29
Age : 31
Location : NH

Artherius's Developer Application Empty
PostSubject: ACCEPTED   Artherius's Developer Application EmptySat Sep 12, 2009 1:59 pm

Welcome to the Team

ACCEPTED-Trial Dev
Back to top Go down
http://south-forums.roflforum.net
Darkcrusader
Administrator
Administrator



Posts : 15
Join date : 2009-09-01

Artherius's Developer Application Empty
PostSubject: Re: Artherius's Developer Application   Artherius's Developer Application EmptyThu Sep 17, 2009 2:58 pm

I know im late on this but, Welcome to the team!
Back to top Go down
Sponsored content





Artherius's Developer Application Empty
PostSubject: Re: Artherius's Developer Application   Artherius's Developer Application Empty

Back to top Go down
 
Artherius's Developer Application
Back to top 
Page 1 of 1
 Similar topics
-
» Gm Application
» Darkyknight gm application
» Cheryl's GM application
» Dev Application Format (We DO Need 1 More)
» Lewis's GM Application

Permissions in this forum:You cannot reply to topics in this forum
South WoW Forums :: The Forums :: Participate! :: Dev Application-
Jump to: