Annapolis Ultima Online Shard
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Annapolis Ultima Online Shard

Join Our Forum! Save the cheerleader, save the world!
 
HomeSearchLatest imagesRegisterLog inReport Check

 

 Ores and Logs 100%

Go down 
3 posters
Go to page : Previous  1, 2
AuthorMessage
^HiMaTaS^
Moderator
Moderator
^HiMaTaS^


Number of posts : 133
Main Character Name : HiMaTaS
Registration date : 2007-06-30

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeFri Jul 13, 2007 2:06 pm

Sounds nice, but it would must be very difficult to do it! Very Happy
Back to top Go down
^TayfuN^
Annapolis Owner
Annapolis Owner
^TayfuN^


Number of posts : 256
Main Character Name : TayfuN
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeFri Jul 13, 2007 2:08 pm

maybe, but we have Coolest Scripter: Ivan aka MaRKeR
Back to top Go down
https://annapolis.forummotion.com/
Marco
Moderator
Moderator
Marco


Number of posts : 837
Main Character Name : Avril
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeFri Jul 13, 2007 2:13 pm

LOL! LOL! LOL!

:<
Back to top Go down
^TayfuN^
Annapolis Owner
Annapolis Owner
^TayfuN^


Number of posts : 256
Main Character Name : TayfuN
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeFri Jul 13, 2007 2:15 pm

What ? Very Happy you can't script it ? :O
Back to top Go down
https://annapolis.forummotion.com/
Marco
Moderator
Moderator
Marco


Number of posts : 837
Main Character Name : Avril
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeFri Jul 13, 2007 2:18 pm

If you can, I can! Very Happy
Back to top Go down
^TayfuN^
Annapolis Owner
Annapolis Owner
^TayfuN^


Number of posts : 256
Main Character Name : TayfuN
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeFri Jul 13, 2007 2:19 pm

no, this NPC i can't script ;(
Back to top Go down
https://annapolis.forummotion.com/
Marco
Moderator
Moderator
Marco


Number of posts : 837
Main Character Name : Avril
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeFri Jul 13, 2007 2:20 pm

NPC I can script, better than it Very Happy
Back to top Go down
^TayfuN^
Annapolis Owner
Annapolis Owner
^TayfuN^


Number of posts : 256
Main Character Name : TayfuN
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeFri Jul 13, 2007 2:24 pm

but we also need party system Very Happy

i have some but i don't think its good !
Back to top Go down
https://annapolis.forummotion.com/
^TayfuN^
Annapolis Owner
Annapolis Owner
^TayfuN^


Number of posts : 256
Main Character Name : TayfuN
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeFri Jul 13, 2007 2:26 pm

Code:
// ##################
// ### Change Log ###
// ##################
// # orachlum, 14.04.2006
// #  * First working release.
// ##################
// # orachlum, 15.04.2006
// #  * Optimized a bit.
// #  * Fixed magery bug.
// ###########################

[DEFNAME options]
PARTY_ATTACK      1 // 1 - disable , 0 - enable. [ allow attack party members ]
PARTY_HARM_CAST  1 // 1 - disable , 0 - enable. [ allow harm cast on party members ]
PARTY_GOLD_ALL    1 // 0 - disable , 1 - enable. [ give looted gold to all party members ]

[EVENTS e_party]
On=@Attack
// src - target [defender]
// []  - hitter [attacker]

if (<IsInParty>) && (<src.IsInParty>) && (<def.party_attack>)
for 0 <eval <src.party.members>>
obj=<src.party.member.<local._for>.uid>
if (<uid>==<obj>)
sysmessage @039 You cannot attack your party members.
cancel_attack
return 1
endif
endfor
endif

On=@SpellCast
// src  - caster [attacker]
// targ  - target [defender]

if (<targ.IsInParty>) && (<src.IsInParty>) && (<def.party_harm_cast>) && (<serv.spell.<argn1>.flags>&spellflag_harm)
for 0 <eval <party.members>>
obj=<party.member.<local._for>.uid>
if (<src.uid>==<obj>)
src.sysmessage @039 You cannot cast harm magic.
src.action = -1
return 1
endif
endfor
endif

On=@ItemPickUp_Pack
// act  - item
// src  - dropper

if (<act.cont.uid> == <src.findlayer(layer_pack).uid>) && (<act.baseid> == i_gold) && (<src.IsInParty>) && (<def.party_gold_all>)
src.sysmessage @039 You cannot pick up gold from your pack while you are in the party.
return 1
endif

On=@ItemDropOn_Self
// src  - dropper
// act  - container
// argo - item

if (<argo.baseid> == i_gold) && (<src.IsInParty>) && (<def.party_gold_all>)
FOR 0 <EVAL <SRC.PARTY.MEMBERS>-1>
OBJ=<SRC.PARTY.MEMBER.<LOCAL._FOR>.UID>
local.q = <eval <argo.amount>>
local.x = <eval <argo.amount>/<src.party.members>>
serv.newitem i_gold
new.amount <eval <local.x>>
new.cont = <obj>
endfor
src.consume <local.q> i_gold
endif
endif

// FUNCTIONS
[FUNCTION cancel_attack]
action = -1
memoryfindtype.memory_war_targ.remove
update

[eof] 
Back to top Go down
https://annapolis.forummotion.com/
Marco
Moderator
Moderator
Marco


Number of posts : 837
Main Character Name : Avril
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeFri Jul 13, 2007 2:30 pm

Hmm, dunno Razz

Maybe it works!
Back to top Go down
^TayfuN^
Annapolis Owner
Annapolis Owner
^TayfuN^


Number of posts : 256
Main Character Name : TayfuN
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeFri Jul 13, 2007 2:33 pm

its work, but we need Dialog for party system:

__________________________________
<NAME> whant's add you in his party !

Agree Decly

__________________________________

Something like that Very Happy

and second dialog of list of party members ! Very Happy
Back to top Go down
https://annapolis.forummotion.com/
^HiMaTaS^
Moderator
Moderator
^HiMaTaS^


Number of posts : 133
Main Character Name : HiMaTaS
Registration date : 2007-06-30

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeSat Jul 14, 2007 2:45 am

Hey can some one make here a full list of ores and logs?
Back to top Go down
Marco
Moderator
Moderator
Marco


Number of posts : 837
Main Character Name : Avril
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeSun Jul 15, 2007 12:03 am

Tayfun can, he's the owner! Very Happy:D:D
Back to top Go down
^HiMaTaS^
Moderator
Moderator
^HiMaTaS^


Number of posts : 133
Main Character Name : HiMaTaS
Registration date : 2007-06-30

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeSun Jul 15, 2007 5:19 am

Hmm, Tayfun is going on vacations! Razz
Back to top Go down
Marco
Moderator
Moderator
Marco


Number of posts : 837
Main Character Name : Avril
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeSun Jul 15, 2007 12:33 pm

I know =D

Ask for Allx to send you the script!
Back to top Go down
^HiMaTaS^
Moderator
Moderator
^HiMaTaS^


Number of posts : 133
Main Character Name : HiMaTaS
Registration date : 2007-06-30

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeSun Jul 15, 2007 1:58 pm

It's dificoult to catch him online! lol!
Back to top Go down
Marco
Moderator
Moderator
Marco


Number of posts : 837
Main Character Name : Avril
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeSun Jul 15, 2007 3:18 pm

Why? He's always online in skype :s
Back to top Go down
^HiMaTaS^
Moderator
Moderator
^HiMaTaS^


Number of posts : 133
Main Character Name : HiMaTaS
Registration date : 2007-06-30

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeMon Jul 16, 2007 12:09 pm

He just don't turn it off! But moust of time he isn't there! Razz
Back to top Go down
Marco
Moderator
Moderator
Marco


Number of posts : 837
Main Character Name : Avril
Registration date : 2007-06-29

Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitimeMon Jul 16, 2007 4:19 pm

:< What a voodoo!
Back to top Go down
Sponsored content





Ores and Logs 100% - Page 2 Empty
PostSubject: Re: Ores and Logs 100%   Ores and Logs 100% - Page 2 Icon_minitime

Back to top Go down
 
Ores and Logs 100%
Back to top 
Page 2 of 2Go to page : Previous  1, 2

Permissions in this forum:You cannot reply to topics in this forum
Annapolis Ultima Online Shard :: General Discussion Forums :: Development Discussion :: Need Work-
Jump to: