Search found 4 matches

by FreeUser
2004-11-27 17:57:43
Forum: Requests
Topic: [Should] Inj Support for Necro/Pala
Replies: 6
Views: 6601

[Should] Inj Support for Necro/Pala

// spells.cpp

// Necromancer spells
m_spells.insert(spell_map_t::value_type("Animate Dead", Spell("102", true, false)));
m_spells.insert(spell_map_t::value_type("Blood Oath", Spell("103", true, false)));
m_spells.insert(spell_map_t::value_type("Corpse Skin", Spell("104", false, false)));
m ...
by FreeUser
2004-11-26 20:52:06
Forum: General
Topic: [Help] with WM_USER+0x4321
Replies: 7
Views: 2630

Get/SetEasyUO I used to think that Get/SetEasyUO cannot be used from WM_USER 'since they're not commands (I've already thought this :) )

(so the only way to perform my task is to use easyuo together with inj making e4sy read vars. and inj write on sigh)

thank anyway :)
by FreeUser
2004-11-26 19:17:08
Forum: General
Topic: [Help] with WM_USER+0x4321
Replies: 7
Views: 2630

First thanks very much for interest

but what i'm searching for is a way to:

1. Pass arguments to script functions i.e. ,Exec Echo("Hello!")
2. a ,sysMessage command not only ,msg which displays text on the head of the character
3. If possible support for new aos spells

For 1-2 is 'cause ...
by FreeUser
2004-11-26 18:20:17
Forum: General
Topic: [Help] with WM_USER+0x4321
Replies: 7
Views: 2630

[Help] with WM_USER+0x4321

Is it possible to send script command or call scripted functions instead of simple commands i.e.

i know i can:
SendMessage <uo>,WM_USER+0x4321,1,GlobalAddAtom("msg Hello")

but why i can't
SendMessage <uo>,WM_USER+0x4321,1,GlobalAddAtom("Uo.Print(\"text)\"") ?????

i need such a feature ...